From a7f40b2f5ff709b9c0d3f5f487cdba6d6d3aa7b6 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 22 Jun 2000 21:51:40 +0000 Subject: Updated 2000-06-22 Jeffrey Stedfast * providers/sendmail/camel-sendmail-provider.c: * providers/vee/camel-vee-provider.c: * providers/smtp/camel-smtp-provider.c: * providers/mbox/camel-mbox-provider.c: * providers/pop3/camel-pop3-provider.c: * providers/imap/camel-imap-provider.c: Updated * camel-session.c: Moved service_cache hash table into the providers. (service_cache_remove): Updated. (camel_session_get_service): Updated. * camel-url.c (camel_url_hash): Took out the hashing of url->passwd. We don't want this anymore. * providers/imap/camel-imap-folder.c (imap_init): Took out references to 'namespace' (camel_imap_folder_init): Same * providers/imap/camel-imap-folder.h: No more namespace. We are instead going to use url->path as the namespace. svn path=/trunk/; revision=3700 --- camel/providers/sendmail/camel-sendmail-provider.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'camel/providers/sendmail') diff --git a/camel/providers/sendmail/camel-sendmail-provider.c b/camel/providers/sendmail/camel-sendmail-provider.c index dce20e4041..3b0b35dd72 100644 --- a/camel/providers/sendmail/camel-sendmail-provider.c +++ b/camel/providers/sendmail/camel-sendmail-provider.c @@ -27,6 +27,7 @@ #include "camel-provider.h" #include "camel-sendmail-transport.h" #include "camel-session.h" +#include "camel-url.h" static CamelProvider sendmail_provider = { "sendmail", @@ -39,7 +40,9 @@ static CamelProvider sendmail_provider = { 0, - { 0, 0 } + { 0, 0 }, + + NULL }; void @@ -48,6 +51,8 @@ camel_provider_module_init (CamelSession *session) sendmail_provider.object_types[CAMEL_PROVIDER_TRANSPORT] = camel_sendmail_transport_get_type(); + sendmail_provider.service_cache = g_hash_table_new (camel_url_hash, camel_url_equal); + camel_session_register_provider (session, &sendmail_provider); } -- cgit v1.2.3