nmh-workers
[Top] [All Lists]

Re: [Nmh-workers] [exmh-workers] Second release candidate for nmh 1.5 is now available

2012-05-14 18:34:40

On 14 May 2012 at 10:35, Ken Hornstein <kenh(_at_)pobox(_dot_)com>wrote:
2. To ask if there are new features in nmh or exmh that aid
   with today's proliferation of quoted-printable and base64
   messages.

Stupid question time ... did you happen to read a) my initial
announcement for the first release candidate for nmh, b) the release
notes to nmh, or c) my replies to others who have asked the same
question?

(But to answer your question ... "yes".  Read the release notes for nmh,
specifically the NEWS file).

OK.  I read the notes this time, instead of skimming lightly like 
last time.

Perl 5.8.8 on my system complained about line 664 in replyfilter

Can't use global $_ in "my" at /usr/local/bin/replyfilter line 664, near "($_"
Execution of /usr/local/bin/replyfilter aborted due to compilation errors.
filterproc: exit 255


Here's my patch, likely more easily applied via your favorite editor 
to remove "my ".


--- /usr/local/share/doc/nmh-1.5/contrib/replyfilter    2012-05-09 
17:32:25.000000000 -0700
+++ /usr/local/bin/replyfilter        2012-05-14 16:28:13.000000000 -0700
@@ -661,7 +661,7 @@
 
 sub match_boundary($$)
 {
-       my ($_, $boundary) = @_;
+       ($_, $boundary) = @_;
 
        return if ! defined $boundary;
 

That works nicely.

Thanks!



_______________________________________________
Nmh-workers mailing list
Nmh-workers(_at_)nongnu(_dot_)org
https://lists.nongnu.org/mailman/listinfo/nmh-workers

<Prev in Thread] Current Thread [Next in Thread>