diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-11 02:01:45 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-11 02:01:45 +0800 |
commit | 4d2972e69fdf11e3f058651600c1854bf07ce9da (patch) | |
tree | 9fe3ec3bc669da520c358555097b042ec10e309d /camel/providers/smtp | |
parent | fb1e084229a1b879b34611e53371d98a7a397ab2 (diff) | |
download | gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.tar gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.tar.gz gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.tar.bz2 gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.tar.lz gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.tar.xz gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.tar.zst gsoc2013-evolution-4d2972e69fdf11e3f058651600c1854bf07ce9da.zip |
Clarify what provider.protocol, provider.name, and provider.description
* camel-provider.h: Clarify what provider.protocol, provider.name,
and provider.description should be.
* providers/mbox/camel-mbox-provider.c:
* providers/pop3/camel-pop3-provider.c:
* providers/sendmail/camel-sendmail-provider.c:
* providers/smtp/camel-smtp-provider.c: update protocols, names,
and descriptions
svn path=/trunk/; revision=2365
Diffstat (limited to 'camel/providers/smtp')
-rw-r--r-- | camel/providers/smtp/camel-smtp-provider.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/camel/providers/smtp/camel-smtp-provider.c b/camel/providers/smtp/camel-smtp-provider.c index 16159f4680..9f49d58b02 100644 --- a/camel/providers/smtp/camel-smtp-provider.c +++ b/camel/providers/smtp/camel-smtp-provider.c @@ -33,9 +33,12 @@ static CamelProvider _smtp_provider = { (GtkType) 0, PROVIDER_TRANSPORT, 0, + + "smtp", "SMTP", - "Camel default SMTP provider", - "This is a provider that sends to a SMTP server.", + + "For delivering mail by connecting to a remote mailhub using SMTP.", + (GModule *) NULL }; |