aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-10-02 03:43:14 +0800
committerDan Winship <danw@src.gnome.org>2001-10-02 03:43:14 +0800
commita9decdd87985fd66f202aa118d5e81d774734420 (patch)
treeac57f62cfa6f03ff534f3d1d0553299618c09279 /camel/providers
parent6b4869002b3cfac1fa5a6f14f1054aaf29c0ef2e (diff)
downloadgsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.tar
gsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.tar.gz
gsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.tar.bz2
gsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.tar.lz
gsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.tar.xz
gsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.tar.zst
gsoc2013-evolution-a9decdd87985fd66f202aa118d5e81d774734420.zip
Fix up the provider flags to specify things more completely so we don't
* camel-provider.h: Fix up the provider flags to specify things more completely so we don't have to hardcode provider names in the mailer. * providers/local/camel-local-provider.c: MH, mbox, and Maildir are LOCAL. MH and mbox are no longer STORAGE by the new definition. * camel-session.c (vee_provider): The vfolder store is a STORAGE. svn path=/trunk/; revision=13276
Diffstat (limited to 'camel/providers')
-rw-r--r--camel/providers/local/camel-local-provider.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/camel/providers/local/camel-local-provider.c b/camel/providers/local/camel-local-provider.c
index 2ee5ea27ba..adda3676cd 100644
--- a/camel/providers/local/camel-local-provider.c
+++ b/camel/providers/local/camel-local-provider.c
@@ -40,7 +40,7 @@ static CamelProvider mh_provider = {
N_("MH-format mail directories"),
N_("For storing local mail in MH-like mail directories."),
"mail",
- CAMEL_PROVIDER_IS_STORAGE,
+ CAMEL_PROVIDER_IS_LOCAL,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,
/* ... */
};
@@ -50,7 +50,7 @@ static CamelProvider mbox_provider = {
N_("Local delivery"),
N_("For retrieving local mail from standard mbox formated spools."),
"mail",
- CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE,
+ CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_LOCAL,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,
/* ... */
};
@@ -66,7 +66,8 @@ static CamelProvider maildir_provider = {
N_("Qmail maildir-format mail files"),
N_("For storing local mail in qmail maildir directories."),
"mail",
- CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE,
+ CAMEL_PROVIDER_IS_SOURCE | CAMEL_PROVIDER_IS_STORAGE |
+ CAMEL_PROVIDER_IS_LOCAL,
CAMEL_URL_NEED_PATH | CAMEL_URL_PATH_IS_ABSOLUTE,
local_conf_entries,
/* ... */