From 92a4fe396da421cc789f87de4bc8d7386a17b1b6 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Sun, 1 Apr 2001 22:16:32 +0000 Subject: [PATCH] Updated the authtypes here too. 2001-04-01 Jeffrey Stedfast * providers/pop3/camel-pop3-provider.c: Updated the authtypes here too. --- camel/ChangeLog | 3 +++ camel/camel-service.h | 7 +++++-- camel/providers/pop3/camel-pop3-provider.c | 7 +++++-- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/camel/ChangeLog b/camel/ChangeLog index 6fd06a1..94fe89f 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2001-04-01 Jeffrey Stedfast + * providers/pop3/camel-pop3-provider.c: Updated the authtypes here + too. + * camel-sasl-plain.c: * camel-sasl-anonymous.c: * camel-sasl-digest-md5.c: diff --git a/camel/camel-service.h b/camel/camel-service.h index 9c180e5..911a0d8 100644 --- a/camel/camel-service.h +++ b/camel/camel-service.h @@ -89,8 +89,11 @@ typedef struct { gboolean need_password; /* needs a password to authenticate */ - gboolean quick_login; /* client can send initial challenge to - * speed up the authentication procedure */ + gboolean quick_login; /* Client can send initial challenge to + * speed up the authentication procedure. + * Note: This option only ever matters if + * it is a SASL mechanism. If unsure, it + * is safe to say FALSE. */ } CamelServiceAuthType; diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c index 0931f90..79cd088 100644 --- a/camel/providers/pop3/camel-pop3-provider.c +++ b/camel/providers/pop3/camel-pop3-provider.c @@ -70,7 +70,8 @@ CamelServiceAuthType camel_pop3_password_authtype = { "password. This is the only option supported by many POP servers."), "", - TRUE + TRUE, + FALSE }; CamelServiceAuthType camel_pop3_apop_authtype = { @@ -81,7 +82,8 @@ CamelServiceAuthType camel_pop3_apop_authtype = { "even on servers that claim to support it."), "+APOP", - TRUE + TRUE, + FALSE }; #ifdef HAVE_KRB4 @@ -92,6 +94,7 @@ CamelServiceAuthType camel_pop3_kpop_authtype = { "to authenticate to it."), "+KPOP", + FALSE, FALSE }; #endif -- 2.7.4