mmh
24 years agoI'm surprised this didn't hit anyone sooner. Doug's portability fix of my
Dan Harkless [Wed, 26 Jan 2000 06:39:49 +0000 (06:39 +0000)]
I'm surprised this didn't hit anyone sooner.  Doug's portability fix of my
setgid inc autodetection didn't do its caching properly.  It cached the variable
$nmh_cv_ls_mail_grp (previously $nmh_group_mailspool), but did substitution on
$MAIL_SPOOL_GRP (previously $MAILGROUP) without setting the latter to the
former.  That meant that when re-running configure, $MAIL_SPOOL_GRP would be
NULL, so the $(MAIL_SPOOL_GRP) Make variable would be NULL, and installation
would fail with the error "install:  2755 does not exist" (since the argument to
-g was missing).

24 years agoImplemented a new type of username masquerading, which is also activated by
Dan Harkless [Wed, 26 Jan 2000 05:40:30 +0000 (05:40 +0000)]
Implemented a new type of username masquerading, which is also activated by
setting mmailid to non-zero in mts.conf.  The new type is based on the From:
header in the message draft rather than the GECOS field of the passwd file like
the old type.

With mmailid turned off, when a user specifies a custom From: header in a draft,
it'll be used, but the user's real address will be revealed in the SMTP envelope
From: and in the Sender: header.  With mmailid on, this revelation is disabled.

Also copied to here my new comment from mh.h explaining (if I understand it
correctly) the functionality of struct swit's minchars field.  Also, changed the
minchars for "help" from 4 to 0.  It doesn't make sense to use a positive
integer that's the exact length of the option.  That'll make it print out like
"-(help)".  The parentheses are supposed to go around the minimum part of the
option you need to specify when abbreviating it.  Perhaps someone thought it
would be cute to put "help" in parentheses to imply that you know about it
already as you just specified it be seeing the current output, but I think this
"overloading" of the meaning of the parentheses is awkward.  I need to go around
and change "help" to 0 everywhere, but it's getting too late to do it tonight.

Also added some other explanatory comments to existing code.

24 years agoUpdated to reflect that there are now two types of username masquerading
Dan Harkless [Wed, 26 Jan 2000 05:28:33 +0000 (05:28 +0000)]
Updated to reflect that there are now two types of username masquerading
(GECOS-based, the old one, and draft-From:-based, the new one).  Also clarified
existing wording.

24 years agoDocumented the minchars field of struct swit to the best of my understanding.
Dan Harkless [Wed, 26 Jan 2000 05:03:07 +0000 (05:03 +0000)]
Documented the minchars field of struct swit to the best of my understanding.

24 years agoModified the mmailid comment to reflect that there are now two types of
Dan Harkless [Wed, 26 Jan 2000 05:01:06 +0000 (05:01 +0000)]
Modified the mmailid comment to reflect that there are now two types of
masquerading (wouldn't want sysadmins to not realize that by allowing one,
they're allowing the other).  I also prefer my new wording of "allow" vs. the
old "turn on" because the latter implied that masquerading would take effect
just by setting that variable (not the case unless /etc/passwd had been
previously modified to have the <fakeusername>s).

24 years agoWhoever changed all the references to nmh-workers@math.gatech.edu to
Dan Harkless [Wed, 26 Jan 2000 04:57:57 +0000 (04:57 +0000)]
Whoever changed all the references to nmh-workers@math.gatech.edu to
nmh-workers@mhost.com missed this file.

24 years agoChanged Mmailids to an extern so that we can access it from post.c to see if we
Dan Harkless [Wed, 26 Jan 2000 04:54:30 +0000 (04:54 +0000)]
Changed Mmailids to an extern so that we can access it from post.c to see if we
should do the new draft-From:-based masquerading.  Also clarified some comments
now that there are two different types of masquerading.

24 years agoJust clarified a couple of points in my last change description.
Dan Harkless [Tue, 25 Jan 2000 21:06:09 +0000 (21:06 +0000)]
Just clarified a couple of points in my last change description.

24 years agoThe prototype I gave for initgroups() which was documented in the AIX 4.1 info
Dan Harkless [Tue, 25 Jan 2000 07:45:10 +0000 (07:45 +0000)]
The prototype I gave for initgroups() which was documented in the AIX 4.1 info
page conflicted with the real one that comes from grp.h on Solaris 2.6.
Adjusted it so the local prototype is correct on both (hopefully all)
platforms.  Also added an include of <unistd.h>, which is where initgroups()
lives on HP-UX 10.20.

24 years agoI kept going back and forth checking in new pointless revisions of
Dan Harkless [Tue, 25 Jan 2000 07:10:25 +0000 (07:10 +0000)]
I kept going back and forth checking in new pointless revisions of
configure[.in], but it now looks like the problem was that stamp-h.in was older
than configure.in (or maybe there were two problems).  Hopefully this'll get rid
of the needless auto* calls.

24 years agoShoot. Apparently it gets the timestamp from the check-in time rather than
Dan Harkless [Tue, 25 Jan 2000 06:56:25 +0000 (06:56 +0000)]
Shoot.  Apparently it gets the timestamp from the check-in time rather than
preserving the actual timestamp on the file when you check it in, so the
timestamp was the same for configure.in and configure, so the Makefile was doing
an autoconf just in case.  This time I'm checking in configure.in first and
configure at least a second later.  What a pain.

24 years agoAccidentally checked in configure with older date than configure.in, but I
Dan Harkless [Tue, 25 Jan 2000 06:46:13 +0000 (06:46 +0000)]
Accidentally checked in configure with older date than configure.in, but I
hadn't made changes to configure.in that would result in a different configure,
so I can't check one in with the right timestamp.  Therefore, I made a
meaningless change to configure.in (adding a "dnl" to the end of line that was
like others that had "dnl" at the end but didn't have one itself) and
regenerated configure.

24 years agoThe conditional definition of the "np" variable didn't make any sense. It was
Dan Harkless [Tue, 25 Jan 2000 06:21:38 +0000 (06:21 +0000)]
The conditional definition of the "np" variable didn't make any sense.  It was
only defined if HAVE_GETHOSTBYNAME was defined and only used when
HAVE_GETHOSTBYNAME wasn't defined.  I'm kind of surprised that never blew up
anywhere.  Changed the definition conditional to match the usage conditional.

24 years agoGot rid of the rest of the warnings that I didn't have time for on 1999-07-15
Dan Harkless [Tue, 25 Jan 2000 06:19:51 +0000 (06:19 +0000)]
Got rid of the rest of the warnings that I didn't have time for on 1999-07-15
(and, it would seem, some new ones people introduced since then).  The primary
ones were the warnings that default prototypes were being used for [v]snprintf()
and str[n]casecmp().  As of right now, there are _no_ compilation warnings
except on the lex output file (at least under AIX 4.1.5 and Solaris 2.6).

24 years agoOn AIX 4.1, snprintf() is defined in libc.a but there's no prototype in
Dan Harkless [Tue, 25 Jan 2000 06:18:54 +0000 (06:18 +0000)]
On AIX 4.1, snprintf() is defined in libc.a but there's no prototype in
<stdio.h> or elsewhere.  Apparently it's not officially supported (though it
seems to work perfectly and IBM apparently uses it in internal code).  Anyhow,
if we omit our own snprintf() and vsnprintf() prototypes when we HAVE_SNPRINTF,
we get a billion warnings at compile time.  Use the C preprocessor to preprocess
stdio.h and make sure that there's actually a prototype.  Define
HAVE_SNPRINTF_PROTOTYPE if so, and use that to control our local prototype
definition.

Also, define strcasecmp() and strncasecmp() here all the time since we define
our own versions and always use them.  The only way we could get into trouble
doing this would be if the vendor's versions didn't have the same parameters,
but I don't see that happening.  If we don't define them here, we get warnings
all over the place that default prototypes are being used for 'em, and the
system header to include varies from OS to OS.

24 years agoOn AIX 4.1, snprintf() is defined in libc.a but there's no prototype in
Dan Harkless [Tue, 25 Jan 2000 06:13:38 +0000 (06:13 +0000)]
On AIX 4.1, snprintf() is defined in libc.a but there's no prototype in
<stdio.h> or elsewhere.  Apparently it's not officially supported (though it
seems to work perfectly and IBM apparently uses it in internal code).  Anyhow,
if we omit our own snprintf() and vsnprintf() prototypes when we HAVE_SNPRINTF,
we get a billion warnings at compile time.  Use the C preprocessor to preprocess
stdio.h and make sure that there's actually a prototype.  Define
HAVE_SNPRINTF_PROTOTYPE if so, and use that to control our local prototype
definition.

24 years agoAdded include of signals.h for SIGNAL() prototype.
Dan Harkless [Tue, 25 Jan 2000 06:06:18 +0000 (06:06 +0000)]
Added include of signals.h for SIGNAL() prototype.

24 years agoAdded include of mh.h for snprintf() prototype.
Dan Harkless [Tue, 25 Jan 2000 06:04:29 +0000 (06:04 +0000)]
Added include of mh.h for snprintf() prototype.

24 years agoAdded include of mh.h to get snprintf() prototype and changed all references to
Dan Harkless [Tue, 25 Jan 2000 06:00:22 +0000 (06:00 +0000)]
Added include of mh.h to get snprintf() prototype and changed all references to
getcpy() to our_getcpy() to prevent conflict with the external one.

24 years agoPut in a prototype for stdio internal function _filbuf() to get rid of the
Dan Harkless [Tue, 25 Jan 2000 05:58:26 +0000 (05:58 +0000)]
Put in a prototype for stdio internal function _filbuf() to get rid of the
"default prototype" warning (only do this when we didn't #define it to something
specific due to another #define telling us to do so).

24 years agoPut in a prototype for client() to get rid of the "default prototype" warning.
Dan Harkless [Tue, 25 Jan 2000 05:55:20 +0000 (05:55 +0000)]
Put in a prototype for client() to get rid of the "default prototype" warning.
The prototype should really go in a new client.h file or somewhere, but I don't
have time right now for that.

24 years agoTypecast to get rid of warnings that index into cc[] is a char.
Dan Harkless [Tue, 25 Jan 2000 05:53:40 +0000 (05:53 +0000)]
Typecast to get rid of warnings that index into cc[] is a char.

24 years agoPut in prototype for initgroups() to get rid of "default prototype" warning. On
Dan Harkless [Tue, 25 Jan 2000 05:52:31 +0000 (05:52 +0000)]
Put in prototype for initgroups() to get rid of "default prototype" warning.  On
AIX 4.1, at least, the function exists in libc.a but doesn't exist in any .h.

24 years agoTypecast to get rid of warnings that array index into types[] is a char.
Dan Harkless [Tue, 25 Jan 2000 05:50:12 +0000 (05:50 +0000)]
Typecast to get rid of warnings that array index into types[] is a char.

24 years ago * Move mhtest from bindir to libdir.
Ruud de Rooij [Thu, 6 Jan 2000 21:30:07 +0000 (21:30 +0000)]
* Move mhtest from bindir to libdir.

* Move sendfiles from libdir to bindir.

* Updated sendfiles manpage to reflect this change.

* Added documentation for -build and -file switches to repl and
  forw manpages (patch from Peter Maydell).

* Fixed interaction between specifying -cc in profile and -group on
  command-line.

24 years ago* Add command to reverse the action of rmm [-nounlink] -- "urmm"? "umm"? "um"?
Dan Harkless [Thu, 11 Nov 1999 01:01:07 +0000 (01:01 +0000)]
* Add command to reverse the action of rmm [-nounlink] -- "urmm"?  "umm"?  "um"?
* Allow user customization of which kinds of text parts in multipart/alternative
  messages are preferred.  It would be nice if one selectable behavior would be
  to be prompted at runtime for which version to show.
* Add a new %-escape that makes temp files more permanent than %f, so that you
  can use gnuclient -q or netscape -remote on message parts.  Put netscape
  -remote in mhn.defaults for text/html once this is done.

24 years agoChanged the version number from 1.0.3 to 1.0.2+dev. There was not unanimous
Dan Harkless [Tue, 2 Nov 1999 21:49:47 +0000 (21:49 +0000)]
Changed the version number from 1.0.3 to 1.0.2+dev.  There was not unanimous
support for my proposed even/odd release/developer version number dichotomy.
1.0.2+dev implies release 1.0.2 plus some development.

24 years agoUpped the version number to 1.0.3. If we don't do this, then when people report
Dan Harkless [Fri, 29 Oct 1999 20:42:13 +0000 (20:42 +0000)]
Upped the version number to 1.0.3.  If we don't do this, then when people report
bugs against 1.0.2, we won't know "which" 1.0.2 they're talking about (since the
development source is publically available via CVS).  I think the Linux kernel
version numbers are a good model, so the next time we roll a tarball, it should
be version 1.0.4 (or higher -- anyhow, an even-numbered version).

24 years agoupdated INSTALL directions
Doug Morris [Fri, 29 Oct 1999 05:10:18 +0000 (05:10 +0000)]
updated INSTALL directions

24 years agorelease nmh-1.0.2
Doug Morris [Fri, 29 Oct 1999 04:49:01 +0000 (04:49 +0000)]
release nmh-1.0.2

24 years agoupdated the TODO list and bumped the revision to 1.0.2.
Doug Morris [Fri, 29 Oct 1999 04:32:50 +0000 (04:32 +0000)]
updated the TODO list and bumped the revision to 1.0.2.

24 years agofixed test in Makefiles for LIBTOOL for the case where it doesn't exist
Doug Morris [Wed, 27 Oct 1999 05:21:12 +0000 (05:21 +0000)]
fixed test in Makefiles for LIBTOOL for the case where it doesn't exist

24 years agofixed libtool check, sort of...
Doug Morris [Tue, 26 Oct 1999 21:12:36 +0000 (21:12 +0000)]
fixed libtool check, sort of...

24 years agochanges to allow building under Mac OS X/Rhapsody
Doug Morris [Thu, 21 Oct 1999 18:59:35 +0000 (18:59 +0000)]
changes to allow building under Mac OS X/Rhapsody

24 years ago * Changed repl defaults to partly revert to MH behaviour:
Ruud de Rooij [Sun, 17 Oct 1999 17:39:22 +0000 (17:39 +0000)]
* Changed repl defaults to partly revert to MH behaviour:
  "-cc all" is now only implied with -group.
* The replcomps template includes cc: header again (as in MH).
* Updated repl man page to reflect these changes.

24 years agosunos/solaris modifications
Doug Morris [Sat, 16 Oct 1999 00:56:05 +0000 (00:56 +0000)]
sunos/solaris modifications

24 years agoreplaced the BIND guess (based on BSDishness) with checks for gethostbyname and setho...
Doug Morris [Fri, 15 Oct 1999 22:38:55 +0000 (22:38 +0000)]
replaced the BIND guess (based on BSDishness) with checks for gethostbyname and sethostent

24 years agofixed bug in mh-profile/mh_profile manpage link - it did not check first
Doug Morris [Wed, 13 Oct 1999 14:56:41 +0000 (14:56 +0000)]
fixed bug in mh-profile/mh_profile manpage link - it did not check first

24 years agoupdated manpage's Makefile and modified the way configure tests to see whether
Doug Morris [Wed, 13 Oct 1999 13:58:41 +0000 (13:58 +0000)]
updated manpage's Makefile and modified the way configure tests to see whether
it should define LINUX_STDIO.

24 years agoAdded '-L' to the calls of 'ls' in configure.in -- I have seen multiple machines
Dan Harkless [Mon, 4 Oct 1999 22:23:29 +0000 (22:23 +0000)]
Added '-L' to the calls of 'ls' in configure.in -- I have seen multiple machines
in the past where the mail spool was a symlink to a directory on another device
with more free space.

24 years ago * Fixed a portability problem in Doug's fix of a portability
Dan Harkless [Sat, 2 Oct 1999 06:00:54 +0000 (06:00 +0000)]
* Fixed a portability problem in Doug's fix of a portability
problem in my MAILGROUP autoconf support ('ls -l' vs. 'ls -lg').

24 years agoI didn't like the double use of "MAILGROUP" for two different variables used in
Dan Harkless [Sat, 2 Oct 1999 06:00:11 +0000 (06:00 +0000)]
I didn't like the double use of "MAILGROUP" for two different variables used in
different languages, with different values.  I renamed Doug's new Makefile
"MAILGROUP" to MAIL_SPOOL_GRP.

24 years agoTouched because I changed configure.in.
Dan Harkless [Sat, 2 Oct 1999 05:57:23 +0000 (05:57 +0000)]
Touched because I changed configure.in.

24 years agoDoug's fix for my MAILGROUP autoconf support on his platform (yep, I was
Dan Harkless [Sat, 2 Oct 1999 05:55:54 +0000 (05:55 +0000)]
Doug's fix for my MAILGROUP autoconf support on his platform (yep, I was
ignorant about that "wheel" group) broke it on my platforms (AIX 4.1.5.0.01 and
Solaris 2.6).  `ls -lg` doesn't do what Doug was expecting on these platforms --
it displays _only_ the group rather than the user and the group (thus awk
'{print $4}' did the wrong thing).

Also did some miscellaneous cleanup, like making variables that were intended to
be cached actually be cached (renamed to nmh_cv_*, etc.), and using the $AWK
that we've auto-detected rather than relying on the $PATH to find one.

24 years ago * Added config.sub and config.guess to the list of files to be
Ruud de Rooij [Sun, 26 Sep 1999 17:45:55 +0000 (17:45 +0000)]
* Added config.sub and config.guess to the list of files to be
distributed.

* Fixed bug in sbr/fmt_scan.c where an extra newline would be
added if a list of addresses was split over several header lines.

* In mts/smtp/smtp.c, undefine strlen and strcpy if they are
macros, regardless of platform.

* Allow q to quit mhshow, and n to skip to next part.  Patch from
Kimmo Suominen <kim@tac.nyc.ny.us>.

* Modified mhstore to recognize attachments created by sendfiles
with x-conversions=gzip.

24 years agomoved canonical guesses back into user config section of config.h
Doug Morris [Mon, 13 Sep 1999 19:23:29 +0000 (19:23 +0000)]
moved canonical guesses back into user config section of config.h

24 years agoupdates to post.c and termsbr.c that prevent warnings on OpenBSD
Doug Morris [Mon, 13 Sep 1999 18:20:28 +0000 (18:20 +0000)]
updates to post.c and termsbr.c that prevent warnings on OpenBSD

24 years agoLots of little code cleanups to prevent warnings - mostly making sure
Doug Morris [Sun, 12 Sep 1999 13:50:11 +0000 (13:50 +0000)]
Lots of little code cleanups to prevent warnings - mostly making sure
some function prototypes are available at compile time. Also fixed
Makefile.in so that make nmhdist will work -- it just blew up after
COMPLETION-TCSH was added and ZSH-COMPLETION was changed to
COMPLETION-ZSH.

24 years agoupdating changelog, should have been done with last commit
Doug Morris [Sun, 12 Sep 1999 07:19:40 +0000 (07:19 +0000)]
updating changelog, should have been done with last commit

24 years agofix for configure to find db1/ndbm.h in new linux systems
Doug Morris [Sun, 12 Sep 1999 06:44:02 +0000 (06:44 +0000)]
fix for configure to find db1/ndbm.h in new linux systems

24 years agoconfigure, configure.in stamp-h.in, and uip/Makefile.in modified to fix
Doug Morris [Fri, 10 Sep 1999 05:22:40 +0000 (05:22 +0000)]
configure, configure.in stamp-h.in, and uip/Makefile.in modified to fix
  MAILGROUP test.
m_getfld.c - added the patch submitted by Richard Cohen to fix
    crashing when mh_profile has no trailing newline.
smtp.c, lock_file.c, m_scratch.c, m_tmpfil.c, mhscmds.c, rcvtty.c, and
  spost.c modified to fix mkstemp bugs. Some I've simply commented out
  because the repair requries either creating another new tempfile
  function (there are 3 already) or cleaning up the existing tmpfile
  functions and all the calls to them. I'm opting for the latter but
  it will take a while.

24 years agoRenamed ZSH.COMPLETION to COMPLETION-ZSH and added COMPLETION-TCSH.
Dan Harkless [Tue, 7 Sep 1999 23:45:20 +0000 (23:45 +0000)]
Renamed ZSH.COMPLETION to COMPLETION-ZSH and added COMPLETION-TCSH.

24 years agoNew file along the lines of the old ZSH.COMPLETION, but for tcsh. Pretty bare
Dan Harkless [Tue, 7 Sep 1999 23:41:37 +0000 (23:41 +0000)]
New file along the lines of the old ZSH.COMPLETION, but for tcsh.  Pretty bare
right now.

24 years agoRenamed to COMPLETION-ZSH so it'll alphabetize next to new COMPLETION-TCSH.
Dan Harkless [Tue, 7 Sep 1999 23:34:00 +0000 (23:34 +0000)]
Renamed to COMPLETION-ZSH so it'll alphabetize next to new COMPLETION-TCSH.

24 years agoRenamed from ZSH.COMPLETION so it'll alphabetize next to new COMPLETION-TCSH.
Dan Harkless [Tue, 7 Sep 1999 23:29:14 +0000 (23:29 +0000)]
Renamed from ZSH.COMPLETION so it'll alphabetize next to new COMPLETION-TCSH.

24 years agoCrap. That's what I get for using vi instead of xemacs for a change. Inserted
Dan Harkless [Wed, 18 Aug 1999 00:05:24 +0000 (00:05 +0000)]
Crap.  That's what I get for using vi instead of xemacs for a change.  Inserted
missing newline.

24 years agoJust adding some text to this file so that cvs will see a difference and let me check...
Dan Harkless [Wed, 18 Aug 1999 00:01:28 +0000 (00:01 +0000)]
Just adding some text to this file so that cvs will see a difference and let me check it in.  Every time acconfig.h or configure.in are changed (which I just
did), the timestamp on this file needs to be updated or when people do a make
an unnecessary `cd . && autoheader` will be done, and not everybody has the
autoconf tools installed.  The next person to change those two files (or
aclocal.m4) will need to change this text, maybe just to a message saying which
dependency files were changed and by whom.

24 years agoAutomated #define of MAILGROUP and installation of inc as setgid mail when the
Dan Harkless [Tue, 17 Aug 1999 23:31:23 +0000 (23:31 +0000)]
Automated #define of MAILGROUP and installation of inc as setgid mail when the
mail spool directory isn't world-writable.

24 years agoAutomated #define of MAILGROUP and installation of inc as setgid mail when the
Dan Harkless [Tue, 17 Aug 1999 23:15:31 +0000 (23:15 +0000)]
Automated #define of MAILGROUP and installation of inc as setgid mail when the
mail spool directory isn't world-writable.

24 years agoJust removed some useless whitespace that [X]Emacs' Make mode highlights as
Dan Harkless [Tue, 17 Aug 1999 23:12:42 +0000 (23:12 +0000)]
Just removed some useless whitespace that [X]Emacs' Make mode highlights as
being semi-bogus.

24 years agoAutomated #define of MAILGROUP and installation of inc as setgid mail when the
Dan Harkless [Tue, 17 Aug 1999 23:09:46 +0000 (23:09 +0000)]
Automated #define of MAILGROUP and installation of inc as setgid mail when the
mail spool directory isn't world-writable.

24 years ago* slocal -debug used to leave a copy of each message processed in /tmp.
Dan Harkless [Fri, 16 Jul 1999 01:39:09 +0000 (01:39 +0000)]
* slocal -debug used to leave a copy of each message processed in /tmp.
* Got rid of a ton of compilation warnings output by gcc -Wall.
* rcvdistcomps no longer has "Resent-Fcc: outbox"; new rcvdistcomps.outbox does.

24 years agoEliminated compilation warnings.
Dan Harkless [Fri, 16 Jul 1999 01:30:05 +0000 (01:30 +0000)]
Eliminated compilation warnings.

24 years agoEliminated unsued sigset_t variables set and oset.
Dan Harkless [Fri, 16 Jul 1999 01:19:29 +0000 (01:19 +0000)]
Eliminated unsued sigset_t variables set and oset.

24 years agoPreviously contained the code:
Dan Harkless [Fri, 16 Jul 1999 01:16:08 +0000 (01:16 +0000)]
Previously contained the code:

if (numburst == 0)
    if (!quietsw)
admonish (NULL, "message %d not in digest format",
  msgnum);
else
    adios (NULL, "burst() botch -- you lose big");

If the indentation is to be believed, this is a bug.  I trusted the indentation
and added {}s around the inner if().

24 years agoEliminated compilation warnings. pop_action() and pop_pack() used to return
Dan Harkless [Fri, 16 Jul 1999 01:13:05 +0000 (01:13 +0000)]
Eliminated compilation warnings.  pop_action() and pop_pack() used to return
garbage.  They now (arbitrarily) return 0.  Dunno if their return values are
ever used...

24 years agoEliminated compilation warnings.
Dan Harkless [Fri, 16 Jul 1999 01:11:44 +0000 (01:11 +0000)]
Eliminated compilation warnings.

24 years agodonote() previously was written such that it could return garbage.
Dan Harkless [Fri, 16 Jul 1999 01:03:34 +0000 (01:03 +0000)]
donote() previously was written such that it could return garbage.

24 years agoerr2peer() previously returned garbage. Now it returns result of callee
Dan Harkless [Fri, 16 Jul 1999 01:01:24 +0000 (01:01 +0000)]
err2peer() previously returned garbage.  Now it returns result of callee
verr2peer().

24 years agoEliminated compilation warnings.
Dan Harkless [Fri, 16 Jul 1999 00:59:36 +0000 (00:59 +0000)]
Eliminated compilation warnings.

24 years agoEliminated compilation warnings.
Dan Harkless [Fri, 16 Jul 1999 00:53:17 +0000 (00:53 +0000)]
Eliminated compilation warnings.

24 years agoEliminated compilation warnings.
Dan Harkless [Fri, 16 Jul 1999 00:52:20 +0000 (00:52 +0000)]
Eliminated compilation warnings.

slocal -debug left a file in /tmp for every single message it processed!
Totally unacceptable since some people like to have slocal -debug in their
.forward files to get better logging.

24 years agoChanged done() from returning void to returning int so that main()s who call
Dan Harkless [Fri, 16 Jul 1999 00:50:01 +0000 (00:50 +0000)]
Changed done() from returning void to returning int so that main()s who call
done() at the end can instead return done() at the end to eliminate the
compilation warning about falling off the end of a non-void function.

24 years agoChanged from returning void to returning int so that main()s who call done() at
Dan Harkless [Fri, 16 Jul 1999 00:48:59 +0000 (00:48 +0000)]
Changed from returning void to returning int so that main()s who call done() at
the end can instead return done() at the end to eliminate the compilation
warning about falling off the end of a non-void function.

24 years agoChanged call of done() to return of done() to eliminate compilation warning.
Dan Harkless [Fri, 16 Jul 1999 00:47:33 +0000 (00:47 +0000)]
Changed call of done() to return of done() to eliminate compilation warning.

24 years agoI think it's totally inappropriate for the default rcvdistcomps to save all
Dan Harkless [Fri, 16 Jul 1999 00:44:40 +0000 (00:44 +0000)]
I think it's totally inappropriate for the default rcvdistcomps to save all
outgoing messages in an "outbox" folder.  I have made a new file called
rcvdistcomps.outbox which looks like this file used to.

24 years agoNew $(DIST_FILES) entry: rcvdistcomps.outbox.
Dan Harkless [Fri, 16 Jul 1999 00:43:04 +0000 (00:43 +0000)]
New $(DIST_FILES) entry: rcvdistcomps.outbox.

24 years agoI renamed the old rcvdistcomps to rcvdistcomps.outbox and removed the
Dan Harkless [Fri, 16 Jul 1999 00:40:35 +0000 (00:40 +0000)]
I renamed the old rcvdistcomps to rcvdistcomps.outbox and removed the
"Resent-Fcc: outbox" line from rcvdistcomps.

24 years agoadded my name to the change
Doug Morris [Sat, 12 Jun 1999 09:29:45 +0000 (09:29 +0000)]
added my name to the change

24 years agoadded explanation of change made two nights ago.
Doug Morris [Sat, 12 Jun 1999 09:26:50 +0000 (09:26 +0000)]
added explanation of change made two nights ago.

24 years agouse mkstemp on systems that have it
Doug Morris [Wed, 9 Jun 1999 20:51:59 +0000 (20:51 +0000)]
use mkstemp on systems that have it

24 years agoAdded notes about the configure change.
Doug Morris [Thu, 13 May 1999 14:42:34 +0000 (14:42 +0000)]
Added notes about the configure change.

24 years agoModified configure to use config.guess and config.sub to auto-detect
Doug Morris [Thu, 13 May 1999 14:28:25 +0000 (14:28 +0000)]
Modified configure to use config.guess and config.sub to auto-detect
the system type and correctly set the #defines in config.h.

24 years ago1.0.1
Dan Harkless [Thu, 13 May 1999 03:42:11 +0000 (03:42 +0000)]
1.0.1

24 years ago1.0.1 patches
Dan Harkless [Thu, 13 May 1999 01:32:53 +0000 (01:32 +0000)]
1.0.1 patches

24 years agoUpdate for the brave new world
Dan Harkless [Thu, 13 May 1999 01:31:47 +0000 (01:31 +0000)]
Update for the brave new world

24 years agoUse "#include <errno.h>" instead of "extern int errno;". Suggested by
Dan Harkless [Thu, 13 May 1999 01:31:00 +0000 (01:31 +0000)]
Use "#include <errno.h>" instead of "extern int errno;". Suggested by
Stephen Wilson Bailey <swb@nconnect.net>

24 years agoadd a note about Irix make
Dan Harkless [Thu, 13 May 1999 01:28:40 +0000 (01:28 +0000)]
add a note about Irix make

24 years agoman page updates from Jerry Peek <jpeek@jpeek.com>
Dan Harkless [Thu, 13 May 1999 01:28:16 +0000 (01:28 +0000)]
man page updates from Jerry Peek <jpeek@jpeek.com>

24 years agodeal with SIGPIPE so mhl doesn't print "Broken pipe" if you quit out
Dan Harkless [Thu, 13 May 1999 01:26:41 +0000 (01:26 +0000)]
deal with SIGPIPE so mhl doesn't print "Broken pipe" if you quit out
of the moreproc

24 years agoFixed a signal-handling bug that could cause whatnow to sometimes exit
Dan Harkless [Thu, 13 May 1999 01:25:52 +0000 (01:25 +0000)]
Fixed a signal-handling bug that could cause whatnow to sometimes exit
without prompting the user. Based on a patch by Richard Geiger
<rmg@netapp.com>.

24 years agoChanged configure.in's check for sigsetjmp to properly deal with
Dan Harkless [Thu, 13 May 1999 01:24:47 +0000 (01:24 +0000)]
Changed configure.in's check for sigsetjmp to properly deal with
systems like Linux where it is a macro. From <elleron@servtech.com>.

24 years agoAdded -library switch so it can parse user aliases like post does.
Dan Harkless [Thu, 13 May 1999 01:22:54 +0000 (01:22 +0000)]
Added -library switch so it can parse user aliases like post does.
From Ruud de Rooij <r.c.m.derooij@twi.tudelft.nl>.

24 years agoDon't add line breaks in the middle of long addresses when building a
Dan Harkless [Thu, 13 May 1999 01:22:03 +0000 (01:22 +0000)]
Don't add line breaks in the middle of long addresses when building a
draft. Fixes a bug where repl would generate invalid headers. From
Ruud de Rooij <r.c.m.derooij@twi.tudelft.nl>.

24 years agoAllow display of 8bit encoded messages. From Kimmo Suominen
Dan Harkless [Thu, 13 May 1999 01:17:23 +0000 (01:17 +0000)]
Allow display of 8bit encoded messages. From Kimmo Suominen
<kim@tac.nyc.ny.us>.

24 years agoChange ordering of a conditional to prevent a bad pointer dereference.
Dan Harkless [Thu, 13 May 1999 01:16:14 +0000 (01:16 +0000)]
Change ordering of a conditional to prevent a bad pointer dereference.
Fixes a segv in inc (and occasionally other programs). Originally from
Ruud de Rooij <r.c.m.derooij@twi.tudelft.nl>

24 years agoFix a buffer overrun that caused packf -mbox to mess up on
Dan Harkless [Thu, 13 May 1999 01:13:58 +0000 (01:13 +0000)]
Fix a buffer overrun that caused packf -mbox to mess up on
Return-Path: lines. From Kimmo Suominen <kim@tac.nyc.ny.us>

24 years agoMake whatnow "list" work with "lproc: show" again. From Ruud de Rooij
Dan Harkless [Thu, 13 May 1999 01:12:12 +0000 (01:12 +0000)]
Make whatnow "list" work with "lproc: show" again. From Ruud de Rooij
<r.c.m.derooij@twi.tudelft.nl>

24 years agoadd HAVE_LIBM
Dan Harkless [Thu, 13 May 1999 01:10:45 +0000 (01:10 +0000)]
add HAVE_LIBM

24 years agoAdd check for modf and link with -lm if it's not in libc. Needed for
Dan Harkless [Thu, 13 May 1999 01:07:15 +0000 (01:07 +0000)]
Add check for modf and link with -lm if it's not in libc. Needed for
at least Digital UNIX. Problem noted by Kevin Oberman <oberman@es.net>