diff options
-rwxr-xr-x | makerelease | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/makerelease b/makerelease index 046bfac1..4ed53af3 100755 --- a/makerelease +++ b/makerelease @@ -51,6 +51,10 @@ if (system("make rpm >/dev/null 2>/dev/null && chown esr *.rpm")) { open(REPORT, ">PREAMBLE.$$"); print REPORT <<EOF; +#!/usr/lib/sendmail -t -oem +From: esr@thyrsus.com (Eric S. Raymond) +To: fetchmail-announce@ccil.org + The $version release of fetchmail is now available at the usual locations, including http://$ENV{'WWWHOST'}/~esr/fetchmail. Here are the release notes: @@ -91,6 +95,7 @@ if ($rcsid eq '<workfile>') { rename("PREAMBLE.$$", "RELEASE.NOTES"); system("chown esr RELEASE.NOTES"); +chmod(0700, "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"; |