2008-10-07 [colin] 3.6.0cvs15
authorColin Leroy <colin@colino.net>
Tue, 7 Oct 2008 16:18:11 +0000 (16:18 +0000)
committerColin Leroy <colin@colino.net>
Tue, 7 Oct 2008 16:18:11 +0000 (16:18 +0000)
* src/imap.c
After thinking, revert this. It's only a minor
annoyance to GSSAPI users, and I can't test this
right now. Postponed until after next good release.

ChangeLog
PATCHSETS
configure.ac
src/imap.c

index a2fa67e68ad498d8a720320a8f0e3ef26c9856f0..e03199cb425bddbe65107f8959c121dd20bdd5c6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2008-10-07 [colin]     3.6.0cvs15
+
+       * src/imap.c
+               After thinking, revert this. It's only a minor
+               annoyance to GSSAPI users, and I can't test this
+               right now. Postponed until after next good release.
+
 2008-10-07 [colin]     3.6.0cvs14
 
        * src/imap.c
index 582dac253dc2dff8d03781a1b10c1e038c330e07..e75c565b36512c1fd80706368d23ed7a7d29112d 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.274.2.280 -r 1.274.2.281 src/mainwindow.c;  cvs diff -u -r 1.39.2.52 -r 1.39.2.53 src/mainwindow.h;  cvs diff -u -r 1.204.2.180 -r 1.204.2.181 src/prefs_common.c;  cvs diff -u -r 1.103.2.115 -r 1.103.2.116 src/prefs_common.h;  cvs diff -u -r 1.395.2.394 -r 1.395.2.395 src/summaryview.c;  cvs diff -u -r 1.2.2.23 -r 1.2.2.24 src/gtk/colorlabel.c;  ) > 3.6.0cvs12.patchset
 ( cvs diff -u -r 1.274.2.281 -r 1.274.2.282 src/mainwindow.c;  ) > 3.6.0cvs13.patchset
 ( cvs diff -u -r 1.179.2.233 -r 1.179.2.234 src/imap.c;  ) > 3.6.0cvs14.patchset
+( cvs diff -u -r 1.179.2.234 -r 1.179.2.235 src/imap.c;  ) > 3.6.0cvs15.patchset
index 76997a89c0b6bce3c39587e6cac73354c7c587bf..d6561da6723fe7a743e517698bdc561393c3304e 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=6
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=14
+EXTRA_VERSION=15
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index b2bf4884a528498fab8ba4f1463735c44d34f813..7f3639c5bde66d4a5165539cef9a9503e341cbf7 100644 (file)
@@ -1163,7 +1163,7 @@ static gint imap_session_authenticate(IMAPSession *session,
        acc_pass = account->passwd;
 try_again:
        pass = acc_pass;
-       if (!pass && account->imap_auth_type != IMAP_AUTH_ANON && account->imap_auth_type != IMAP_AUTH_GSSAPI) {
+       if (!pass && account->imap_auth_type != IMAP_AUTH_ANON) {
                gchar *tmp_pass;
                tmp_pass = input_dialog_query_password_keep(account->recv_server, 
                                                            account->userid,
@@ -1172,7 +1172,7 @@ try_again:
                        return MAILIMAP_NO_ERROR;
                Xstrdup_a(pass, tmp_pass, {g_free(tmp_pass); return MAILIMAP_NO_ERROR;});
                g_free(tmp_pass);
-       } else if (account->imap_auth_type == IMAP_AUTH_ANON || account->imap_auth_type == IMAP_AUTH_GSSAPI) {
+       } else if (account->imap_auth_type == IMAP_AUTH_ANON) {
                pass = "";
        }
        statuswindow_print_all(_("Connecting to IMAP4 server %s...\n"),