Index: README.UPGRADING
===================================================================
RCS file: /home/mea/src/CVSROOT/zmailer/README.UPGRADING,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- README.UPGRADING 1999/06/06 21:55:13 1.13
+++ README.UPGRADING 1999/06/10 17:47:13 1.14
@@ -18,7 +18,11 @@
the binary file formats of those files ARE NOT COMPATIBLE
WITH BSD DB 1.85 PRODUCED ONES! The databases must be
recompiled if that format is used!
-
+ # cd $MAILVAR/db
+ # ../bin/newaliases
+ # ../bin/newfqdnaliases
+ # ../bin/newdb routes (et.al.)
+ # ../bin/policy-builder.sh -n
ZMailer-2.99.50-s17
The SMTPSERVER no longer per default runs interactive
Index: contrib/zmailstats
===================================================================
RCS file: /home/mea/src/CVSROOT/zmailer/contrib/zmailstats,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -r1.1.1.1 -r1.2
--- contrib/zmailstats 1998/02/10 21:01:44 1.1.1.1
+++ contrib/zmailstats 1999/06/10 17:47:33 1.2
@@ -388,7 +388,8 @@
while (<>)
{
($x_month,$x_day,$x_time,$transport,$id,$flag,$x_address) =
- /^(\w\w\w)\s(\d{1,2})\s(\d\d:\d\d:\d\d)\s\w*\s(\w*)\[\d*\]:\s([\d\w\.])*:\s(\w*)=(\<\S+\>)/;
+ /^(\w\w\w)\s{1,2}(\d{1,2})\s(\d\d:\d\d:\d\d)\s\w*\s(\w*)\[\d*\]:\s([\d\w\.])*:\s(\w*)=(\<\S+\>)/;
+
# Continue if invalid line
if (!defined $flag || $transport eq "hold") { next };
# Assume 1997. This should be fixed somehow
Index: libsh/interpret.c
===================================================================
RCS file: /home/mea/src/CVSROOT/zmailer/libsh/interpret.c,v
retrieving revision 1.23
retrieving revision 1.28
diff -u -r1.23 -r1.28
--- libsh/interpret.c 1999/06/03 07:39:51 1.23
+++ libsh/interpret.c 1999/06/11 10:44:10 1.28
@@ -98,6 +98,7 @@
}
}
+ s0 = tmalloc(len+1); /* All subsequent runs will be smaller,
+ AND they fit running in-place! */
+#else
s0 = emalloc(len+1); /* All subsequent runs will be smaller,
AND they fit running in-place! */
+#endif