From ae5979b0b1a715a1fdfd4c7dce203650ab6a0228 Mon Sep 17 00:00:00 2001 From: frueauf Date: Sun, 29 Oct 2000 22:56:30 +0000 Subject: Update fetchmail{conf} to 5.5.5. fetchmail-5.5.5 (Tue Oct 17 17:50:46 EDT 2000), 19523 lines: * Killed a nasty segfault due to double-freeing of the header block. * Updated Danish internationalization by Byrial Jensen. * Added FAQ item X7 on attachment hangs. fetchmail-5.5.4 (Sun Oct 8 10:57:37 EDT 2000), 19518 lines: * Fall back on the computed queryname if we need the DNS name of a a host and can't get it. Resolves Debian bug #69199. * Andrej Borsenkow's fix for configuration with new SOCKS. * Pavel Roskin's fix to build the RPM without libcrypto (Red Hat changed the library name to libk5crypto in 6.2). * Peter Backes's sm-hybrid patch added to contrib; more FAQ item T1 changes. * Emiliano's patch to make dropdelivered and envelope interact properly. * In fetchmailconf, always reset the port number when changing protocols. * Patrick Bihan-Faou's changes to use sysctl() for interface checking so fetchmail doesn't have to be suid kmem. --- mail/fetchmail/Makefile | 4 ++-- mail/fetchmail/files/md5 | 4 ++-- mail/fetchmail/files/patch-sum | 4 ++-- mail/fetchmail/patches/patch-ab | 26 ++++++++++++++------------ mail/fetchmailconf/Makefile | 4 ++-- mail/fetchmailconf/files/md5 | 4 ++-- 6 files changed, 24 insertions(+), 22 deletions(-) (limited to 'mail') diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index a3f87207e16..b00f203cdf0 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.77 2000/10/15 17:11:42 frueauf Exp $ +# $NetBSD: Makefile,v 1.78 2000/10/29 22:56:30 frueauf Exp $ # -DISTNAME= fetchmail-5.5.3 +DISTNAME= fetchmail-5.5.5 CATEGORIES= mail MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ \ http://www.tuxedo.org/~esr/fetchmail/ \ diff --git a/mail/fetchmail/files/md5 b/mail/fetchmail/files/md5 index 461444e11c7..cdd47b256da 100644 --- a/mail/fetchmail/files/md5 +++ b/mail/fetchmail/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.48 2000/10/15 17:11:43 frueauf Exp $ +$NetBSD: md5,v 1.49 2000/10/29 22:56:31 frueauf Exp $ -MD5 (fetchmail-5.5.3.tar.gz) = bc4cbae5af3f0f64a68762e3d3eb33a0 +MD5 (fetchmail-5.5.5.tar.gz) = 58e63756f9de6d504a1398164e1638e8 diff --git a/mail/fetchmail/files/patch-sum b/mail/fetchmail/files/patch-sum index 6342749b36c..00ce83eae61 100644 --- a/mail/fetchmail/files/patch-sum +++ b/mail/fetchmail/files/patch-sum @@ -1,5 +1,5 @@ -$NetBSD: patch-sum,v 1.12 2000/07/24 20:58:53 frueauf Exp $ +$NetBSD: patch-sum,v 1.13 2000/10/29 22:56:31 frueauf Exp $ MD5 (patch-aa) = cc1298297934cf1b0821583ef27ac5d9 -MD5 (patch-ab) = 81269d478730c513ebddf3f64e6a45b3 +MD5 (patch-ab) = e250709868504acbfd40cfa89634766e MD5 (patch-ad) = da45661a42aca654307a83b8d00c6a18 diff --git a/mail/fetchmail/patches/patch-ab b/mail/fetchmail/patches/patch-ab index 0fe8d1a7e10..763f8d68dac 100644 --- a/mail/fetchmail/patches/patch-ab +++ b/mail/fetchmail/patches/patch-ab @@ -1,19 +1,21 @@ -$NetBSD: patch-ab,v 1.12 2000/01/21 15:45:34 fredb Exp $ +$NetBSD: patch-ab,v 1.13 2000/10/29 22:56:31 frueauf Exp $ ---- Makefile.in.orig Tue Jan 4 00:58:45 2000 -+++ Makefile.in Fri Jan 21 07:10:15 2000 -@@ -152,10 +152,10 @@ +--- Makefile.in.orig Tue Oct 17 23:50:22 2000 ++++ Makefile.in Sun Oct 29 23:44:01 2000 +@@ -153,12 +153,12 @@ + $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir) $(DESTDIR)$(mandir) @echo "Installing fetchmail binary..." - $(INSTALL_PROGRAM) ./fetchmail $(bindir)/fetchmail + $(INSTALL_PROGRAM) ./fetchmail $(DESTDIR)$(bindir)/fetchmail - @echo "Installing fetchmail configurator..." -- $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf +- $(INSTALL_PROGRAM) ${srcdir}/fetchmailconf $(DESTDIR)$(bindir)/fetchmailconf +# @echo "Installing fetchmail configurator..." -+# $(BSD_INSTALL_SCRIPT) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf ++# $(BSD_INSTALL_SCRIPT) ${srcdir}/fetchmailconf $(DESTDIR)$(bindir)/fetchmailconf @echo "Installing manual page..." - $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmail.$(manext) -- rm -f $(mandir)/fetchmailconf.$(manext) -- ln -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) -+# rm -f $(mandir)/fetchmailconf.$(manext) -+# ln -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) + $(INSTALL_DATA) $(srcdir)/fetchmail.man $(DESTDIR)$(mandir)/fetchmail.$(manext) +- rm -f $(DESTDIR)$(mandir)/fetchmailconf.$(manext) +- cd $(DESTDIR)$(mandir) && ln -s fetchmail.$(manext) fetchmailconf.$(manext) ++# rm -f $(DESTDIR)$(mandir)/fetchmailconf.$(manext) ++# cd $(DESTDIR)$(mandir) && ln -s fetchmail.$(manext) fetchmailconf.$(manext) @echo "Installing language catalogs..." @POMAKE@ install + diff --git a/mail/fetchmailconf/Makefile b/mail/fetchmailconf/Makefile index f1018e15153..02f80ba2ef9 100644 --- a/mail/fetchmailconf/Makefile +++ b/mail/fetchmailconf/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2000/10/15 17:11:43 frueauf Exp $ +# $NetBSD: Makefile,v 1.11 2000/10/29 22:56:31 frueauf Exp $ # -DISTNAME= fetchmail-5.5.3 +DISTNAME= fetchmail-5.5.5 PKGNAME= ${DISTNAME:S/fetchmail/fetchmailconf/} CATEGORIES= mail MASTER_SITES= ftp://ftp.ccil.org/pub/esr/fetchmail/ \ diff --git a/mail/fetchmailconf/files/md5 b/mail/fetchmailconf/files/md5 index 737310d434a..aa626b1129c 100644 --- a/mail/fetchmailconf/files/md5 +++ b/mail/fetchmailconf/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.9 2000/10/15 17:11:44 frueauf Exp $ +$NetBSD: md5,v 1.10 2000/10/29 22:56:31 frueauf Exp $ -MD5 (fetchmail-5.5.3.tar.gz) = bc4cbae5af3f0f64a68762e3d3eb33a0 +MD5 (fetchmail-5.5.5.tar.gz) = 58e63756f9de6d504a1398164e1638e8 -- cgit v1.2.3