David Levine [Wed, 14 Nov 2012 14:47:14 +0000 (08:47 -0600)]
Removed support for zip from sendfiles. I added it as part of the
sendfiles rewrite, f8baa5a34335fc0fc8ccabfabc601d0af73ab769, a few
weeks ago. But because sendfiles fed zip from standard input, zip
would use Zip64 extensions. That would require unzip 6.0 or later
to extract, according to the zip man page. But current MacOS X
uses unzip 5.52, so it broke there.
Ken Hornstein [Tue, 13 Nov 2012 23:53:55 +0000 (18:53 -0500)]
Change %(putlit) and %(zputlit) to take TF_EXPR instead of TF_STR. This
was originally my fault; TF_STR means a string literal as an argument, but
the documentation (and the code) really means for it to take an expression.
David Levine [Wed, 7 Nov 2012 00:43:42 +0000 (18:43 -0600)]
Removed note from BUGS section of several man pages saying
that command line arguments must be quoted for protection from
the shell. That's not a bug, and has nothing to do with nmh.
Changed "back-quoted" to "backquoted" for consistency in a few
man pages.
David Levine [Sun, 28 Oct 2012 18:21:46 +0000 (13:21 -0500)]
Updated build-nmh-cygwin for release of Cygwin nmh 1.5-2. To use:
1) Change VERSION to 1.5-2.
2) make dist
3) Symlink build-nmh-cygwin to nmh-1.5-2 and run that with "all".
David Levine [Sat, 27 Oct 2012 17:18:45 +0000 (12:18 -0500)]
In test-post-common.sh and test-mhmail, wait for fakesmtp to start
for up to 40 seconds. 10 seconds wasn't long enough when I leaned
on my machine. Also, print out a message if exiting due to that
timeout.
David Levine [Sat, 27 Oct 2012 17:14:01 +0000 (12:14 -0500)]
Added -check/-nocheck switches to sortm(1). Also removed obsolete
note in the BUGS portion of its man page about how it sorts messages
that are missing or have an invalid Date: field. It actually sorts
them using their file modification times.
David Levine [Wed, 24 Oct 2012 00:16:56 +0000 (19:16 -0500)]
Cyrus SASL 2.1.25 introduced the sasl_callback_ft prototype,
which has an explicit void parameter list, according to best
practice. So we need to cast to avoid compile warnings.
And provide a sasl_callback_ft prototype for earlier versions.
David Levine [Sun, 21 Oct 2012 14:52:46 +0000 (09:52 -0500)]
Updated sendfiles(1):
1) Added -from switch.
2) sendfiles will now construct a From address, using the sender's
localmbox, if the user does not specify it with -from or the PERSON
environment variable.
3) Added support for bzip2, lzma, and zip compression methods. Added
a new switch to select the method: -compress <method>. Because
support for the old -compress with was broken (it did not use
-c with compress/uncompress) and it was undocumented, it has
been replaced. Retained old -gzip and -none switches for backward
compatibility even though they were undocumented.
4) Allow the recipient argument to be preceded by the optional -to
switch iff the subject argument is preceded by the optional
-subject switch. Allow the delay value to be specified using the
optional -delay switch.
5) Added -version and -help switches.
6) All switches can now be abbreviated.
/etc/sendfiles no longer needs to be configured. It's easier to
support make distcheck by having it figure out its path at runtime.
In viamail, set postproc to post in the same directory as itself, if
invoked with a full path. This allows it to support make distcheck.
viamail does not read the profile so its postproc is otherwise
hard-coded at compile time.
2) %nmhdate% is a hardwired value that only gets updated along with
%nmhversion% and is therefore redundant.
This patch nukes the MH.6.8 tag, and replaces the hardwired
%nmhdate% field with the latest date the associated manpage has
been updated. I pulled the dates - as best I could - from the
git logs.
Going forward, it is incumbent on developers to update the
manpage date stamps as they update the pages themselves.
Lyndon Nerenberg [Tue, 16 Oct 2012 19:36:30 +0000 (12:36 -0700)]
Add new make targets 'man' and 'cleanman' to build and clean just
the man/ sub-directory. I also removed the '@' supressors for the
internal manpage targets. There's no net benefit to hiding this stuff.
Lyndon Nerenberg [Tue, 16 Oct 2012 18:12:27 +0000 (11:12 -0700)]
Some version of man(1) barf if the first line of the manpage is not
the .TH macro. Re-order the generated mh-chart.man so that the 'auto-generated'
comment appears after the .TH macro.
Lyndon Nerenberg [Tue, 16 Oct 2012 00:06:40 +0000 (17:06 -0700)]
automake 1.12 generates some (apparently) harmless warnings, but the build
fails becuase we invoke automake with -Werror. Remove -Werror from the
automake options until the autotools gurus can patch things up.
David Levine [Mon, 15 Oct 2012 00:27:17 +0000 (19:27 -0500)]
The first alias contained in a blind list is now expanded. The
mh-alias(5) man page was updated to show that blind lists must not
be terminated with, or contain, a trailing semicolon [Bug #15604].
David Levine [Sat, 13 Oct 2012 23:00:39 +0000 (18:00 -0500)]
Don't allow blind aliases with sendmail/pipe mts. Before this change,
they would be fed to sendmail, which would reject them anyway. This
change catches that in post and presents a more helpful error message
to the user (at the "What now?" prompt, if used).
A possible future enhancement might be, with sendmail/pipe, to expand
out blind aliases and put the addresses in Bcc: header fields, but
then the recipients would get messages with the Blind-Carbon-Copy
indication. (Note that Dcc isn't supported with sendmail/pipe,
either.)
Just for information: old spost fed the addresses of blind aliases to
sendmail, making them visible to all recipients. Oops.
David Levine [Sun, 7 Oct 2012 15:18:54 +0000 (10:18 -0500)]
Updates to test/common.sh.in:
1) Added function check_for_hard_links. Moved this code out of
test-refile so that other tests can use it.
2) Added mmdfldir and mmdflfil settings to the mts.conf for tests, to
support test-msgchk.
David Levine [Sun, 23 Sep 2012 14:00:11 +0000 (09:00 -0500)]
When determining the path of the script inside mhmail, handle case
where $0 is just the script name, without any directory. Bourne
shell does that if the script is found using PATH.
David Levine [Tue, 18 Sep 2012 00:42:27 +0000 (19:42 -0500)]
Removed mhmail.c because it was no longer needed and could get in
the way of make if its timestamp was newer than that of the mhmail
script. Thanks to Johan Viklund for reporting this.
David Levine [Sun, 16 Sep 2012 18:54:23 +0000 (13:54 -0500)]
With mhstore -clobber auto/suffix, when looking for a new filename,
actually open(2) the file with O_CREAT | O_EXCL to avoid the race
condition when figuring out the filename first and opening it later.
David Levine [Sat, 15 Sep 2012 18:14:18 +0000 (13:14 -0500)]
Changed ; to && in shell command, per Ralph's suggestion. There
were two remaining places that still used ";". Though they
weren't of consequence, it's the right thing to do.
David Levine [Fri, 14 Sep 2012 22:05:24 +0000 (17:05 -0500)]
Added check in send(1) of attach (default Nmh-Attachment) headers to
ensure that only plain files are attached. Otherwise, it is a fatal
error. Note that whatnow's attach will continue to allow attachment
of directories because it expands those out to their contents. It
doesn't check what the contents are, though. That's why we needed to
add this check.
Also added a check to skip attach headers that are empty so that
they can be put in drafts, per Norm's request.
David Levine [Tue, 11 Sep 2012 13:44:43 +0000 (08:44 -0500)]
Updated docs/README-ATTACHMENTS, mainly to reflect that no setup is
required with nmh 1.5 and beyond. And the user documentation is in
the send(1) and whatnow(1) man pages.
David Levine [Sat, 18 Aug 2012 00:29:49 +0000 (19:29 -0500)]
Removed chmod of bccfil from make_bcc_file(). It was done before
bccfil was defined so it had no useful effect. m_mktemp2() sets
the umask so it wasn't necessary, anyway.
David Levine [Thu, 9 Aug 2012 22:13:38 +0000 (17:13 -0500)]
Added default_content_type argument to
make_mime_composition_file_entry(). It's used only to force message
bodies to always use text/plain content type, which allows mhbuild to
do the right thing with them. Thanks to Steve Rader for reporting
that UTF-8 characters in message bodies had previously caused them to
be encoded as octet-streams (with attachments managed by send), and to
Ken for coming up with the fix.