aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/pop3/camel-pop3-provider.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-04-02 06:16:32 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-04-02 06:16:32 +0800
commit1193763d9e8b6abf209bc6593a7e09dd76359bb1 (patch)
tree3a1e68717c0f47c49225e50ac170bad3228d9a0d /camel/providers/pop3/camel-pop3-provider.c
parentc3db21df6ef94b5fb91a5c0dbdcfc518c299b37c (diff)
downloadgsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.tar
gsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.tar.gz
gsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.tar.bz2
gsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.tar.lz
gsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.tar.xz
gsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.tar.zst
gsoc2013-evolution-1193763d9e8b6abf209bc6593a7e09dd76359bb1.zip
Updated the authtypes here too.
2001-04-01 Jeffrey Stedfast <fejj@ximian.com> * providers/pop3/camel-pop3-provider.c: Updated the authtypes here too. svn path=/trunk/; revision=9087
Diffstat (limited to 'camel/providers/pop3/camel-pop3-provider.c')
-rw-r--r--camel/providers/pop3/camel-pop3-provider.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c
index 0931f903ed..79cd088738 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