diff options
author | frueauf <frueauf@pkgsrc.org> | 1999-09-16 16:51:49 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 1999-09-16 16:51:49 +0000 |
commit | c35a56d9a15085b9eb4168be5ee8f2b00ac2cb2c (patch) | |
tree | 041a4421145385d9f4638ab31c0716e67ac6d12c /mail | |
parent | a79049e1190f9ad2d9b151aac00349b508655559 (diff) | |
download | pkgsrc-c35a56d9a15085b9eb4168be5ee8f2b00ac2cb2c.tar.gz |
Update fetchmail to 5.0.8.
fetchmail-5.0.8 (Tue Sep 14 06:56:50 EDT 1999):
* Todd Sabin's patch to accept spaces in CRAM-MD5 names.
* Fix to CRAM endianness patch, by Dan Root via Lawrence Rogers.
* Suppress duplicates by message ID in multidrop mode.
* NTLM support for querying Microsoft Exchange servers, from Grant Edwards.
* Lexer fix by Brian Boutel.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fetchmail/Makefile | 4 | ||||
-rw-r--r-- | mail/fetchmail/files/md5 | 4 | ||||
-rw-r--r-- | mail/fetchmail/patches/patch-ab | 20 |
3 files changed, 14 insertions, 14 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index 1110d2cd214..e9c144b4aba 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.53 1999/09/14 02:32:24 kim Exp $ +# $NetBSD: Makefile,v 1.54 1999/09/16 16:51:49 frueauf Exp $ # -DISTNAME= fetchmail-5.0.7 +DISTNAME= fetchmail-5.0.8 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 58c6451fff3..03824d9a9c5 100644 --- a/mail/fetchmail/files/md5 +++ b/mail/fetchmail/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.34 1999/08/22 20:20:57 frueauf Exp $ +$NetBSD: md5,v 1.35 1999/09/16 16:51:50 frueauf Exp $ -MD5 (fetchmail-5.0.7.tar.gz) = bd6a7a9a042146d66558eb3a75e64610 +MD5 (fetchmail-5.0.8.tar.gz) = 32ccaa647e4f04f47ea4f85ed7528215 diff --git a/mail/fetchmail/patches/patch-ab b/mail/fetchmail/patches/patch-ab index 32739a4f2e8..8864af8d893 100644 --- a/mail/fetchmail/patches/patch-ab +++ b/mail/fetchmail/patches/patch-ab @@ -1,17 +1,17 @@ -$NetBSD: patch-ab,v 1.7 1998/10/18 12:08:23 frueauf Exp $ +$NetBSD: patch-ab,v 1.8 1999/09/16 16:51:51 frueauf Exp $ ---- Makefile.in.orig Fri Oct 16 18:49:17 1998 -+++ Makefile.in Sun Oct 18 13:45:13 1998 -@@ -80,7 +80,7 @@ +--- Makefile.in.orig Tue Sep 14 12:53:08 1999 ++++ Makefile.in Thu Sep 16 18:38:36 1999 +@@ -84,7 +84,7 @@ protobjs = rcfile_y.o rcfile_l.o socket.o getpass.o pop2.o pop3.o imap.o \ etrn.o fetchmail.o env.o options.o daemon.o driver.o sink.o \ - rfc822.o smtp.o xmalloc.o uid.o mxget.o md5c.o md5ify.o rpa.o \ + rfc822.o smtp.o xmalloc.o uid.o mxget.o md5ify.o rpa.o \ - interface.o netrc.o base64.o error.o unmime.o conf.o checkalias.o + interface.o netrc.o base64.o error.o unmime.o conf.o checkalias.o \ + smbdes.o smbencrypt.o smbmd4.o smbutil.o - objs = $(protobjs) $(extras) $(EXTRAOBJ) -@@ -91,7 +91,7 @@ +@@ -96,7 +96,7 @@ $(srcdir)/options.c $(srcdir)/daemon.c $(srcdir)/driver.c \ $(srcdir)/sink.c $(srcdir)/rfc822.c $(srcdir)/smtp.c \ $(srcdir)/xmalloc.c $(srcdir)/uid.c $(srcdir)/mxget.c \ @@ -19,8 +19,8 @@ $NetBSD: patch-ab,v 1.7 1998/10/18 12:08:23 frueauf Exp $ + $(srcdir)/md5ify.c $(srcdir)/rpa.c \ $(srcdir)/interface.c $(srcdir)/netrc.c $(srcdir)/base64.c \ $(srcdir)/error.c $(srcdir)/unmime.c $(srcdir)/conf.c \ - $(srcdir)/checkalias.c -@@ -135,7 +135,7 @@ + $(srcdir)/checkalias.c $(srcdir)/smbdes.c $(srcdir)/smbencrypt.c \ +@@ -151,7 +151,7 @@ @echo "Installing fetchmail binary..." $(INSTALL_PROGRAM) ./fetchmail $(bindir)/fetchmail @echo "Installing fetchmail configurator..." @@ -28,4 +28,4 @@ $NetBSD: patch-ab,v 1.7 1998/10/18 12:08:23 frueauf Exp $ + $(BSD_INSTALL_SCRIPT) ${srcdir}/fetchmailconf $(bindir)/fetchmailconf @echo "Installing manual page..." $(INSTALL_DATA) $(srcdir)/fetchmail.man $(mandir)/fetchmail.$(manext) - ln -f -s $(mandir)/fetchmail.$(manext) $(mandir)/fetchmailconf.$(manext) + rm -f $(mandir)/fetchmailconf.$(manext) |