diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-07-05 07:15:16 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-07-05 07:15:16 +0800 |
commit | adfff13e095602ac0aa4f98a8dec8494b3428a4c (patch) | |
tree | 075ce9dc34e8f7606d4a9212fe70f3eeeb000fe2 | |
parent | 45f3b7586781b65bc51cfd77630a06a505786159 (diff) | |
download | gsoc2013-evolution-adfff13e095602ac0aa4f98a8dec8494b3428a4c.tar.gz gsoc2013-evolution-adfff13e095602ac0aa4f98a8dec8494b3428a4c.tar.zst gsoc2013-evolution-adfff13e095602ac0aa4f98a8dec8494b3428a4c.zip |
Set the IS_SOURCE provider flag.
2002-07-04 Jeffrey Stedfast <fejj@ximian.com>
* providers/nntp/camel-nntp-provider.c: Set the IS_SOURCE provider
flag.
svn path=/trunk/; revision=17369
-rw-r--r-- | camel/ChangeLog | 3 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-provider.c | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index aaa8bd6f91..3798fa2eac 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,5 +1,8 @@ 2002-07-04 Jeffrey Stedfast <fejj@ximian.com> + * providers/nntp/camel-nntp-provider.c: Set the IS_SOURCE provider + flag. + * providers/pop3/camel-pop3-store.c: Change all exceptions to report which POP server failed (and tried to make a few of the exceptions a bit more clear). diff --git a/camel/providers/nntp/camel-nntp-provider.c b/camel/providers/nntp/camel-nntp-provider.c index c38b794504..8f54b3ee98 100644 --- a/camel/providers/nntp/camel-nntp-provider.c +++ b/camel/providers/nntp/camel-nntp-provider.c @@ -45,7 +45,8 @@ static CamelProvider news_provider = { "news", - CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_STORAGE, + CAMEL_PROVIDER_IS_REMOTE | CAMEL_PROVIDER_IS_SOURCE | + CAMEL_PROVIDER_IS_STORAGE, CAMEL_URL_NEED_HOST | CAMEL_URL_ALLOW_USER | CAMEL_URL_ALLOW_PASSWORD | CAMEL_URL_ALLOW_AUTH, |