]> Pileus Git - ~andy/fetchmail/commitdiff
Minor updates.
authorEric S. Raymond <esr@thyrsus.com>
Wed, 12 Apr 2000 15:06:44 +0000 (15:06 -0000)
committerEric S. Raymond <esr@thyrsus.com>
Wed, 12 Apr 2000 15:06:44 +0000 (15:06 -0000)
svn path=/trunk/; revision=2872

NEWS
configure.in
fetchmail-FAQ.html
imap.c

diff --git a/NEWS b/NEWS
index b399a912b64a5eec4fc15e225f5be4f451eb90c8..6b2d79a3230d3b4ec6d6a3fbd8856a3edc748640 100644 (file)
--- 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 <jba@pobox.com>.
+* 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.
index 134e43dc24e0313d76c0cc52591da3bd4d74c272..dcb94304796614de845b9c67bbc0e40e30369408 100644 (file)
@@ -73,7 +73,7 @@ fi
 # Arnaldo Carvalho de Melo <acme@conectiva.com.br>
 # 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
 
index c0d7f6f00b7775f1b5413f9307f5fdfa7bbab20e..4143c4ef816fb5e0b73381ff38510a5c73728c97 100644 (file)
@@ -10,7 +10,7 @@
 <table width="100%" cellpadding=0><tr>
 <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a>
 <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a>
-<td width="30%" align=right>$Date: 2000/04/07 10:07:05 $
+<td width="30%" align=right>$Date: 2000/04/12 15:06:44 $
 </table>
 <HR>
 <H1>Frequently Asked Questions About Fetchmail</H1>
@@ -294,7 +294,7 @@ One of my objectives is to keep fetchmail simple so it stays reliable.<p>
 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 <a
-href="http://www.tuxedo.org/fetchmail/design.notes.html">design notes</a>.<p>
+href="http://www.tuxedo.org/fetchmail/design-notes.html">design notes</a>.<p>
 
 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.<p>
 <table width="100%" cellpadding=0><tr>
 <td width="30%">Back to <a href="index.html">Fetchmail Home Page</a>
 <td width="30%" align=center>To <a href="/~esr/sitemap.html">Site Map</a>
-<td width="30%" align=right>$Date: 2000/04/07 10:07:05 $
+<td width="30%" align=right>$Date: 2000/04/12 15:06:44 $
 </table>
 
 <P><ADDRESS>Eric S. Raymond <A HREF="mailto:esr@thyrsus.com">&lt;esr@snark.thyrsus.com&gt;</A></ADDRESS>
diff --git a/imap.c b/imap.c
index 66010957cd44a9261d7b40c5c422308095ba8d8f..1a294abe60ce2451dc18d289d1c37f870f6e6c00 100644 (file)
--- 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 <andrew.chatham@duke.edu> 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,