diff options
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | NEWS | 9 | ||||
-rwxr-xr-x | specgen.sh | 12 |
3 files changed, 12 insertions, 13 deletions
diff --git a/Makefile.in b/Makefile.in index 389b94d2..107bbba5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -3,7 +3,7 @@ # If you're running QNX, we can't assume a working autoconf. # So just uncomment all the lines marked QNX. -VERS=4.3.8 +VERS=4.3.9 # Ultrix 2.2 make doesn't expand the value of VPATH. srcdir = @srcdir@ @@ -132,9 +132,11 @@ installdirs: $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(mandir) $(bindir)/$(instname): fetchmail + @echo "Installing binary..." $(INSTALL_PROGRAM) fetchmail $@ $(mandir)/$(instname).$(manext): fetchmail.man + @echo "Installing manual page..." $(INSTALL_DATA) $(srcdir)/fetchmail.man $@ uninstall: @@ -2,21 +2,22 @@ * Generate bounce messages when delivery is refused. See RFC1891, RFC1892. * Use the libmd functions for md5 under Free BSD? (Low priority.) -* More log levels? * Allow an explicit "append" option to specify what rewrite appends? (For when user's pop3 host isn't the same as his SMTP host.) * Allow -c -F to work to flush messages without retrieval. * Read from /etc/fetchmailrc before ~/.fetchmailrc? * Do is_host_alias checks by comparing IP addresses rather than names? * Handle multi-homed hosts correctly. +* Add an "ident" per-user option for debugging that produces an + "X-Fetchmail-ID" header in fetched messages for debugging. Release Notes: ------------------------------------------------------------------------------ -fetchmail-4.4.0 (): +fetchmail-4.3.9 (Fri Mar 6 10:45:32 EST 1998): * Relax the LOGIN capability check in IMAP. * John Stracke <francis@netscape.com> sent a workaround for SIGALRM flakiness - under Red Hat 5.0. + under glibc6 over Linux. * Kerberos V support from Jon Dugan <jdugan@ncsa.uiuc.edu> and Von Welch <vwelch@ncsa.uiuc.edu>. * Ron Kaminsky <kam@Orbotech.Co.IL> sent a patch to RFC1730-encode passwords @@ -25,7 +26,7 @@ fetchmail-4.4.0 (): * Made the antispam response configurable. * UID-handling fix from Dick van den Burg <burg@is.ge.com>, -There are 269 people on fetchmail-friends and 144 on fetchmail-announce. +There are 275 people on fetchmail-friends and 153 on fetchmail-announce. fetchmail-4.3.8 (Tue Feb 24 15:47:13 EST 1998): * Documentation cleanup. @@ -9,7 +9,6 @@ Group: Applications/Mail Copyright: GPL Icon: fetchmail.gif Requires: smtpdaemon -BuildRoot: /tmp/fetchmail-%{version}-root %description fetchmail is a free, full-featured, robust, and well-documented remote @@ -27,16 +26,13 @@ CFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=/usr make %install -rm -rf $RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT/usr/{bin,man/man1} -make prefix=$RPM_BUILD_ROOT/usr install +make install %clean rm -rf $RPM_BUILD_ROOT %files -%attr(-,root,root) %doc README NEWS NOTES fetchmail-FAQ.html FAQ COPYING INSTALL -sample.rcfile -%attr(-,root,root) /usr/bin/fetchmail -%attr(-,root,root) /usr/man/man1/fetchmail.1 +%doc README NEWS NOTES fetchmail-FAQ.html FAQ COPYING INSTALL sample.rcfile +/usr/bin/fetchmail +/usr/man/man1/fetchmail.1 EOF |