aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-10-06 20:46:36 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-10-06 20:46:36 +0000
commitf600ebad6152e6d4f2e85b8a505ace5b81d23263 (patch)
tree569141f412ced5aae6ccc791eac80e7ff0f2bef9
parent4cb267590512956e78cc054f816fc6294088ce2b (diff)
downloadfetchmail-f600ebad6152e6d4f2e85b8a505ace5b81d23263.tar.gz
fetchmail-f600ebad6152e6d4f2e85b8a505ace5b81d23263.tar.bz2
fetchmail-f600ebad6152e6d4f2e85b8a505ace5b81d23263.zip
Ready to ship.
svn path=/trunk/; revision=1486
-rw-r--r--NEWS7
-rwxr-xr-xindexgen.sh3
-rwxr-xr-xmakerelease7
3 files changed, 8 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 5e9a0fd5..209b60ec 100644
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,6 @@
* Generate bounce messages when delivery is refused. See RFC1891, RFC1894.
* Use the libmd functions for md5 under Free BSD? (Low priority.)
-* Send notification mail on messages skipped due to --limit?
* More log levels?
Other TO-DO items:
@@ -12,21 +11,21 @@
Release Notes:
------------------------------------------------------------------------------
-fetchmail-4.3.0-alpha (Sun Oct 5 11:07:53 EDT 1997)
+fetchmail-4.3.0 (Mon Oct 6 16:44:38 EDT 1997)
* Rearranged IMAP authentication so CAPABILITY is done first,
* FAQ update, including a major new item on how to protect your password.
* Added code to have %F in an MDA string expand to the From address
* Added code to prevent buffer spamming via the MDA %T/%s escape.
* Luca Olivetti's --qvirtual option patch for qmail users.
* Fixed a bug in the code that was supposed to suppress expansion of RFC822
- groupnames. (Thanks to Santiago Vila Doncel for pointing this.)
+ groupnames. (Thanks to Santiago Vila Doncel for pointing this out)
* It's now possible to explicitly configure out POP3, IMAP, or ETRN.
* We no longer get the hostname for address rewrites and log messages from the
server greeting line, instead it's the server's canonical DNS name.
* Improved UID handling for RFC1725 POP3 servers coping with a line hit.
* Created fetchmail-announce list.
-There are 285 people on fetchmail-friends and 6 on fetchmail-announce.
+There are 281 people on fetchmail-friends and 8 on fetchmail-announce.
fetchmail-4.2.9 (Tue Sep 30 18:21:35 EDT 1997)
* Don't byte-stuff when writing to an MDA.
diff --git a/indexgen.sh b/indexgen.sh
index e0153f12..4e87487f 100755
--- a/indexgen.sh
+++ b/indexgen.sh
@@ -188,9 +188,6 @@ More log levels?
<LI>
Use the libmd functions for md5 under Free BSD? (Low priority.)
-
-<LI>
-Send notification mail on messages skipped due to --limit?
</UL>
But these are frills. I'm not seeing serious user demand for any of them.<P>
diff --git a/makerelease b/makerelease
index 3a235ade..59eb4d75 100755
--- a/makerelease
+++ b/makerelease
@@ -75,8 +75,9 @@ $oldrcs = $oldid;
$oldrcs =~ tr/-/./;
print REPORT <<EOF;
-Diffs from the previous ($oldrcs) release follow as a MIME attachment.
+By popular demand, diffs from the previous release have been omitted.
EOF
+#Diffs from the previous ($oldrcs) release follow as a MIME attachment.
close(NEWS);
@@ -88,7 +89,9 @@ if ($rcsid eq '<workfile>') {
system("rcsdiff -u -r$oldid -r$rcsid RCS/* 2>/dev/null >DIFFS.$$");
}
-system "metasend -b -D 'fetchmail-$rcsid announcement' -m 'text/plain' -e 7bit -f PREAMBLE.$$ -n -D 'diff -u between -$oldrcs $rcsid' -m 'text/plain' -e 7bit -f DIFFS.$$ -o RELEASE_NOTES";
+mv PREAMBLE.$$ RELEASE.NOTES
+# If we ever want to go back to enclosing diffs.
+#system "metasend -b -D 'fetchmail-$rcsid announcement' -m 'text/plain' -e 7bit -f PREAMBLE.$$ -n -D 'diff -u between -$oldrcs $rcsid' -m 'text/plain' -e 7bit -f DIFFS.$$ -o RELEASE_NOTES";
unlink("PREAMBLE.$$");
unlink("DIFFS.$$");