aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* Fix options handling.Eric S. Raymond1996-10-112-4/+4
* Don't step on the Makefile!Eric S. Raymond1996-10-111-3/+2
* Cosmetic change.Eric S. Raymond1996-10-111-2/+2
* Renove unnecessary union type.Eric S. Raymond1996-10-111-2/+0
* Option dump cleanup.Eric S. Raymond1996-10-111-3/+4
* Option reorganization.Eric S. Raymond1996-10-112-47/+39
* Option reorganization -- also N -> n.Eric S. Raymond1996-10-112-195/+206
* More minor changes.Eric S. Raymond1996-10-111-4/+2
* Move some stuff to NOTES.Eric S. Raymond1996-10-111-26/+1
* Bug fix.Eric S. Raymond1996-10-111-1/+2
* AAdd untested-feature warning.Eric S. Raymond1996-10-112-1/+31
* Permanent changes to NEWS etc.Eric S. Raymond1996-10-112-18/+8
* Put anti-GPV at the top.Eric S. Raymond1996-10-111-22/+18
* Added anti-GPV clause.Eric S. Raymond1996-10-111-0/+24
* Initial revisionEric S. Raymond-39/+24
* Change logfile open mode to append.Eric S. Raymond1996-10-111-0/+1
* Excruciatingly correct CR-LF translation for qmail.Eric S. Raymond1996-10-111-10/+57
* Improved options processing.Eric S. Raymond1996-10-111-16/+7
* Restored idfile option.Eric S. Raymond1996-10-111-2/+2
* Avoid trashing lines beginning with dots in IMAP.Eric S. Raymond1996-10-111-2/+2
* nuke any tag hanging out from previous queryEric S. Raymond1996-10-111-0/+1
* Make deletions slightly faster.Eric S. Raymond1996-10-101-1/+1
* Ship IMAP passwords as quoted strings.Eric S. Raymond1996-10-102-1/+3
* UIDs, take 3.Eric S. Raymond1996-10-105-31/+33
* Comment fix.Eric S. Raymond1996-10-101-0/+1
* Slightly less crowded messages.Eric S. Raymond1996-10-101-1/+1
* UIDs, phase 2.Eric S. Raymond1996-10-104-19/+63
* UIDs are back in.Eric S. Raymond1996-10-101-5/+7
* UIDs are back in.Eric S. Raymond1996-10-106-14/+88
* Part of the Kerberos changes.Eric S. Raymond1996-10-101-0/+7
* Kerberos integration, stage 3.Eric S. Raymond1996-10-108-53/+113
* Implemented --auth as a way of generalizing the Kerberos support.Eric S. Raymond1996-10-101-5/+13
* Relocate the kerberos code to driver.c.Eric S. Raymond1996-10-102-60/+74
* Chris Hanson's Kerberos support, plus documentation.Eric S. Raymond1996-10-1010-10/+129
* We conform to RFC1939.Eric S. Raymond1996-10-091-2/+2
* Cleaner authentication code.Eric S. Raymond1996-10-091-17/+8
* Ready to ship.Eric S. Raymond1996-10-091-4/+4
* Version number bump.Eric S. Raymond1996-10-091-1/+1
* Add capability to generate RPM specfile.Eric S. Raymond1996-10-093-3/+13
* Quieter progress messages.Eric S. Raymond1996-10-092-20/+15
* Removed all pretentions to RPOP support.Eric S. Raymond1996-10-091-9/+0
* Let POP3 pick up the message length.Eric S. Raymond1996-10-091-2/+8
* Add octet count to standard message.Eric S. Raymond1996-10-091-0/+3
* Date stamp.Eric S. Raymond1996-10-091-1/+1
* Removed all pretentions to RPOP support.Eric S. Raymond1996-10-091-0/+3
* That bug was fixed.Eric S. Raymond1996-10-091-3/+0
* Removed all pretentions to RPOP support.Eric S. Raymond1996-10-0911-82/+5
* Feature addition.Eric S. Raymond1996-10-091-1/+3
* News update.Eric S. Raymond1996-10-091-3/+7
> (system("make dist $null")) { die("Distribution-build failure\n"); } print "### Building the RPMs...\n"; if (system("buildrpms fetchmail-${version}.tar.gz $null")) { die("RPM-build failure\n"); } open(REPORT, ">PREAMBLE.$$"); print REPORT <<EOF; From: esr\@thyrsus.com (Eric S. Raymond) Reply-To: esr\@thyrsus.com (Eric S. Raymond) Subject: The $version release of fetchmail is available FCC: ~/postings/outmail The $version release of fetchmail is now available at the usual locations, including <URL:http://$ENV{'WWWVIRTUAL'}/~esr/fetchmail>. The source archive is available at: <URL:http://$ENV{'WWWVIRTUAL'}/~esr/fetchmail/fetchmail-${version}.tar.gz> Here are the release notes: EOF # Extract the current notes open(NEWS, "NEWS"); while (<NEWS>) { if (/^fetchmail/) { print REPORT $_; last; } } while (<NEWS>) { if (/^fetchmail/) { last; } print REPORT $_; } $oldrcs = $oldid; $oldrcs =~ tr/-/./; if ($diffs) { print REPORT "Diffs from the previous ($oldrcs) release follow as a MIME attachment." } else { print REPORT "By popular demand, diffs from the previous release have been omitted." } close(NEWS); close(REPORT); if ($rcsid eq '<workfile>') { system("rcsdiff -u -r$oldid RCS/* 2>/dev/null >DIFFS.$$"); } else { system("rcsdiff -u -r$oldid -r$rcsid RCS/* 2>/dev/null >DIFFS.$$"); } print "Diff size:"; system("wc <DIFFS.$$"); if ($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 ANNOUNCE.EMAIL"; } else { rename("PREAMBLE.$$", "ANNOUNCE.EMAIL"); } system("chown esr ANNOUNCE.EMAIL"); chmod(0700, "ANNOUNCE.EMAIL"); #unlink("PREAMBLE.$$"); unlink("DIFFS.$$"); print "Building index page...\n"; system("rm -f index.html; indexgen.sh"); print "Building test server list...\n"; system("rm -f testservers.html; testservers-gen.sh >testservers.html"); print "Making activity graph..."; growthplot; print "Done\n"; # makerelease ends here