From ca556ac7b3f9f2c0ec9bb960e0419206fd899a03 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 12 Apr 2000 15:06:44 +0000 Subject: [PATCH] Minor updates. svn path=/trunk/; revision=2872 --- NEWS | 5 +++++ configure.in | 2 +- fetchmail-FAQ.html | 6 +++--- imap.c | 6 ++++++ 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index b399a912..6b2d79a3 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,11 @@ (The `lines' figures total .c, .h, .l, and .y files under version control.) +* Updated and corrected version of contrib/domino. +* Galician translation added, courtesy of Jesus Bravo Alvarez . +* Spanish translation updated, courtesy of Javier Kohen. +* Removed an unnecessary Kereberos check that seemed to be causing lossage. + fetchmail-5.3.6 (Sat Apr 8 03:54:04 EDT 2000), 18947 lines: * Autoprobe now recognizes Domino IMAP servers and warns the user. diff --git a/configure.in b/configure.in index 134e43dc..dcb94304 100644 --- a/configure.in +++ b/configure.in @@ -73,7 +73,7 @@ fi # Arnaldo Carvalho de Melo # Sat Nov 7 15:39:03 EDT 1998 -ALL_LINGUAS="cs es fr pl pt_BR" +ALL_LINGUAS="cs es fr pl pt_BR gl" AM_GNU_GETTEXT diff --git a/fetchmail-FAQ.html b/fetchmail-FAQ.html index c0d7f6f0..4143c4ef 100644 --- a/fetchmail-FAQ.html +++ b/fetchmail-FAQ.html @@ -10,7 +10,7 @@
Back to Fetchmail Home Page To Site Map -$Date: 2000/04/07 10:07:05 $ +$Date: 2000/04/12 15:06:44 $

Frequently Asked Questions About Fetchmail

@@ -294,7 +294,7 @@ One of my objectives is to keep fetchmail simple so it stays reliable.

For reasons fetchmail doesn't have other commonly-requested features (such as password encryption, or multiple concurrent polls from the same instance of fetchmail) see the design notes.

+href="http://www.tuxedo.org/fetchmail/design-notes.html">design notes.

Fetchmail is a mature project, no longer in constant active development. It is no longer my top project, and I am going to be @@ -2783,7 +2783,7 @@ terminate it.

Back to Fetchmail Home Page To Site Map -$Date: 2000/04/07 10:07:05 $ +$Date: 2000/04/12 15:06:44 $

Eric S. Raymond <esr@snark.thyrsus.com>
diff --git a/imap.c b/imap.c index 66010957..1a294abe 100644 --- a/imap.c +++ b/imap.c @@ -323,12 +323,18 @@ static int do_rfc1731(int sock, char *truename) return PS_AUTHFAIL; } +#ifdef __UNUSED__ + /* + * Andrew H. Chatham alleges that this check + * is not necessary and has consistently been messing him up. + */ if (strcmp(tktuser, user) != 0) { report(stderr, _("principal %s in ticket does not match -u %s\n"), tktuser, user); return PS_AUTHFAIL; } +#endif /* __UNUSED__ */ if (tktinst[0]) { report(stderr, -- 2.43.2