aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers/imap/camel-imap-store.c
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-14 01:17:56 +0800
committerDan Winship <danw@src.gnome.org>2000-07-14 01:17:56 +0800
commite3970d1396c10d10dda0653f117fda97d6fddac8 (patch)
treeac96656fafaa5555d9c9fe40006fbcbdd467b5ce /camel/providers/imap/camel-imap-store.c
parent2aaffa25607cd6aa97319a9212697af78c7b53e3 (diff)
downloadgsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.tar
gsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.tar.gz
gsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.tar.bz2
gsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.tar.lz
gsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.tar.xz
gsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.tar.zst
gsoc2013-evolution-e3970d1396c10d10dda0653f117fda97d6fddac8.zip
define a set of CAMEL_SERVICE_URL_ALLOW_* flags parallel to the _NEED_*
* camel-service.h: define a set of CAMEL_SERVICE_URL_ALLOW_* flags parallel to the _NEED_* flags, and make the _NEED_* flags imply the _ALLOW_* ones. * providers/imap/camel-imap-store.c (camel_imap_store_init): imap urls ALLOW_PATH svn path=/trunk/; revision=4147
Diffstat (limited to 'camel/providers/imap/camel-imap-store.c')
-rw-r--r--camel/providers/imap/camel-imap-store.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/camel/providers/imap/camel-imap-store.c b/camel/providers/imap/camel-imap-store.c
index fc852bd659..07630ed6f5 100644
--- a/camel/providers/imap/camel-imap-store.c
+++ b/camel/providers/imap/camel-imap-store.c
@@ -99,7 +99,9 @@ camel_imap_store_init (gpointer object, gpointer klass)
CamelService *service = CAMEL_SERVICE (object);
CamelStore *store = CAMEL_STORE (object);
- service->url_flags = (CAMEL_SERVICE_URL_NEED_USER | CAMEL_SERVICE_URL_NEED_HOST);
+ service->url_flags = (CAMEL_SERVICE_URL_NEED_USER |
+ CAMEL_SERVICE_URL_NEED_HOST |
+ CAMEL_SERVICE_URL_ALLOW_PATH);
store->folders = g_hash_table_new (g_str_hash, g_str_equal);
}