I'm not on the mailing list so this may have already been
discussed but when I upgraded to 1.0 I found that spost no longer
worked. I don't have the exact error message but the problem was that
the aliases file could not be read. The reason for this is that
when it tried to process my local aliases file it never prepended
the full path to the file, thus is could not open it. Attached
below is a patch that makes it work. I'm sure this is not the
correct solution but at leas not I can send out messages with
nmh again.
Since defpath == "/dev/null" the test below is always true so we
never get past it.
Craig
--- nmh-1.0/sbr/context_read.c.orig Sun Feb 21 00:05:48 1999
+++ nmh-1.0/sbr/context_read.c Sun Feb 21 00:06:54 1999
@@ -21,8 +21,11 @@
register struct passwd *pw;
register FILE *ib;
+ /* This check prevents the mh_profile from ever getting read */
+ /*
if (defpath)
return;
+ */
/*
* Find user's home directory