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.
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.
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.
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...
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.
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.
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.
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.
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>.
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>.
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>