Wed May 7 23:24:02 EDT 1997 - (Greg A. Woods) woods@planix.com IMPORTANT: NOTE: See the attached patch.... I think we're getting down to the short strokes for 3.2.1, to use a possibly offensive or possibly amusing expression depending on your point of view! ;-) Since 3.2.0.94 the major changes are portability fixes. There were two significant but minor fixes to long standing problems: one was the router and aliasfile flags were being clobbered if an undocumented option was turned on; and the other being that it was impossible for a director to return an address that should be matched by a virtual host director (i.e. one using the domains attribute). Thanks to Dan Tomlinson for giving me some clues and cajoling me into fixing the former (at the last minute!) and D'Arcy Cain for doing the same about the latter. As always the ToDo and PROJECTS files list things that various people think should be worked on. Patches that eliminate items from these files are always welcome! If you'd like to work on any of the bigger projects just send a note to and let us know so we can help co-ordinate and possibly give you access to the CVS repository. See the README and the file Smail3-devel for more information. Remember to use the smailbug utility to submit bug reports! (There's now a symlink installed in the smail_bin_dir to make it easier to access.) BTW, I goofed again and there's a tiny bug in the install procedure: ---------- important fix ---------- Index: src/Makefile =================================================================== RCS file: /local/src-CVS/master/smail/src/Makefile,v retrieving revision 1.34 diff -c -r1.34 Makefile *** src/Makefile 1997/04/30 16:23:06 1.34 --- src/Makefile 1997/05/08 04:41:59 *************** *** 263,277 **** ?*) echo Testing ... install-libs ignored; exit 0;; \ esac; \ ${XEXEC} ${SHELL} ${INSTM} -r -m 0444 $$LIB_DIR COPYING; \ ! if [ "X$$PATH_FORCE_PATHS_FILE" != "X" -a ! -f $$PATH_FORCE_PATHS_FILE ] ; then \ echo "touch $$PATH_FORCE_PATHS_FILE"; \ touch $$PATH_FORCE_PATHS_FILE; \ fi; \ ! if [ "X$$PATH_FORCE_SMTP_FILE" != "X" -a ! -f $$PATH_FORCE_SMTP_FILE ] ; then \ echo "touch $$PATH_FORCE_SMTP_FILE"; \ touch $$PATH_FORCE_SMTP_FILE; \ ! fi ! if [ "X$$PATH_PATHS_FILE" != "X" -a ! -f $$PATH_PATHS_FILE ] ; then \ echo "touch $$PATH_PATHS_FILE"; \ touch $$PATH_PATHS_FILE; \ fi --- 263,277 ---- ?*) echo Testing ... install-libs ignored; exit 0;; \ esac; \ ${XEXEC} ${SHELL} ${INSTM} -r -m 0444 $$LIB_DIR COPYING; \ ! if [ "X$$PATH_FORCE_PATHS_FILE" != "X" -a ! -f "$$PATH_FORCE_PATHS_FILE" ] ; then \ echo "touch $$PATH_FORCE_PATHS_FILE"; \ touch $$PATH_FORCE_PATHS_FILE; \ fi; \ ! if [ "X$$PATH_FORCE_SMTP_FILE" != "X" -a ! -f "$$PATH_FORCE_SMTP_FILE" ] ; then \ echo "touch $$PATH_FORCE_SMTP_FILE"; \ touch $$PATH_FORCE_SMTP_FILE; \ ! fi; \ ! if [ "X$$PATH_PATHS_FILE" != "X" -a ! -f "$$PATH_PATHS_FILE" ] ; then \ echo "touch $$PATH_PATHS_FILE"; \ touch $$PATH_PATHS_FILE; \ fi