From 6f7c1a19440f91d05009dbea60518771327b88ff Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Fri, 14 Apr 2000 20:37:04 +0000 Subject: [This was accidentally not committed with its ChangeLog entry somehow...] * camel-provider.h: Clarify what provider.protocol, provider.name, and provider.description should be. svn path=/trunk/; revision=2434 --- camel/camel-provider.h | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'camel') diff --git a/camel/camel-provider.h b/camel/camel-provider.h index 5018cc6cd0..d359ca90c8 100644 --- a/camel/camel-provider.h +++ b/camel/camel-provider.h @@ -50,9 +50,20 @@ typedef struct { GtkType object_type; /* used to create instance of the provider */ ProviderType provider_type; /* is a store or a transport */ int flags; /* information about the provider */ - gchar *protocol; /* name of the protocol ("IMAP"/"SMTP"/"MH" ...) */ - gchar *name; /* name of the provider ("Raymond the IMAP provider") */ - gchar *description; /* Useful when multiple providers are available for a same protocol */ + + /* Provider name used in CamelURLs. */ + gchar *protocol; + + /* Provider name as used by people. (May be the same as protocol) */ + gchar *name; + + /* Description of the provider. A novice user should be able + * to read this description, and the information provided by + * an ISP, IS department, etc, and determine whether or not + * this provider is relevant to him, and if so, which + * information goes with it. + */ + gchar *description; GModule *gmodule; } CamelProvider; -- cgit