diff options
Diffstat (limited to 'camel/providers')
-rw-r--r-- | camel/providers/imap/camel-imap-provider.c | 7 | ||||
-rw-r--r-- | camel/providers/mbox/camel-mbox-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/nntp/camel-nntp-provider.c | 4 | ||||
-rw-r--r-- | camel/providers/pop3/camel-pop3-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/sendmail/camel-sendmail-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/smtp/camel-smtp-provider.c | 2 | ||||
-rw-r--r-- | camel/providers/vee/camel-vee-provider.c | 2 |
7 files changed, 18 insertions, 3 deletions
diff --git a/camel/providers/imap/camel-imap-provider.c b/camel/providers/imap/camel-imap-provider.c index cf43687bbe..92013a9643 100644 --- a/camel/providers/imap/camel-imap-provider.c +++ b/camel/providers/imap/camel-imap-provider.c @@ -30,10 +30,11 @@ static CamelProvider imap_provider = { "imap", - "IMAPv4 mail store", + "IMAPv4", - "For reading mail on remote systems and " - "storing mail on remote servers.", + "For reading and storing mail on IMAP servers.", + + "mail", 0, diff --git a/camel/providers/mbox/camel-mbox-provider.c b/camel/providers/mbox/camel-mbox-provider.c index 04ce88de12..ade04aa20d 100644 --- a/camel/providers/mbox/camel-mbox-provider.c +++ b/camel/providers/mbox/camel-mbox-provider.c @@ -35,6 +35,8 @@ static CamelProvider mbox_provider = { "For reading mail delivered by the local system, and for " "storing mail on local disk.", + "mail", + 0, { 0, 0 } diff --git a/camel/providers/nntp/camel-nntp-provider.c b/camel/providers/nntp/camel-nntp-provider.c index fe50a1f952..4afc8c7c97 100644 --- a/camel/providers/nntp/camel-nntp-provider.c +++ b/camel/providers/nntp/camel-nntp-provider.c @@ -34,6 +34,8 @@ static CamelProvider news_provider = { "This is a read-only provider for USENET newsgroups.", + "news", + CAMEL_PROVIDER_IS_REMOTE, { 0, 0 } @@ -46,6 +48,8 @@ static CamelProvider nntp_provider = { "This is a provider for reading from and posting to" "USENET newsgroups.", + "news", + CAMEL_PROVIDER_IS_REMOTE, { 0, 0 } diff --git a/camel/providers/pop3/camel-pop3-provider.c b/camel/providers/pop3/camel-pop3-provider.c index dc6e2b9442..40514ad60a 100644 --- a/camel/providers/pop3/camel-pop3-provider.c +++ b/camel/providers/pop3/camel-pop3-provider.c @@ -36,6 +36,8 @@ static CamelProvider pop3_provider = { "to retrieve mail from certain web mail providers and proprietary " "email systems.", + "mail", + CAMEL_PROVIDER_IS_REMOTE, { 0, 0 } diff --git a/camel/providers/sendmail/camel-sendmail-provider.c b/camel/providers/sendmail/camel-sendmail-provider.c index 16ebce8b12..dce20e4041 100644 --- a/camel/providers/sendmail/camel-sendmail-provider.c +++ b/camel/providers/sendmail/camel-sendmail-provider.c @@ -35,6 +35,8 @@ static CamelProvider sendmail_provider = { "For delivering mail by passing it to the \"sendmail\" program " "on the local system.", + "mail", + 0, { 0, 0 } diff --git a/camel/providers/smtp/camel-smtp-provider.c b/camel/providers/smtp/camel-smtp-provider.c index d93b03edc4..9e6f571498 100644 --- a/camel/providers/smtp/camel-smtp-provider.c +++ b/camel/providers/smtp/camel-smtp-provider.c @@ -34,6 +34,8 @@ static CamelProvider smtp_provider = { "For delivering mail by connecting to a remote mailhub using SMTP.", + "mail", + 0, { 0, 0 } diff --git a/camel/providers/vee/camel-vee-provider.c b/camel/providers/vee/camel-vee-provider.c index b9c20b4561..3d0063b55c 100644 --- a/camel/providers/vee/camel-vee-provider.c +++ b/camel/providers/vee/camel-vee-provider.c @@ -30,6 +30,8 @@ static CamelProvider vee_provider = { "For reading mail as a query of another set of folders", + "vfolder", + 0, { 0, 0 } |