Call camel_iconv_init(). (camel_shutdown): Call camel_iconv_shutdown().
[platform/upstream/evolution-data-server.git] / camel / camel.c
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2
3 /* 
4  *
5  * Author : 
6  *  Bertrand Guiheneuf <bertrand@helixcode.com>
7  *
8  * Copyright 1999, 2000 Ximian, Inc. (www.ximian.com)
9  *
10  * This program is free software; you can redistribute it and/or 
11  * modify it under the terms of version 2 of the GNU General Public 
12  * License as published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22  * USA
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #include <config.h>
27 #endif
28
29 #include <signal.h>
30
31 #ifdef HAVE_NSS
32 #include <nspr.h>
33 #include <prthread.h>
34 #include "nss.h"      /* Don't use <> here or it will include the system nss.h instead */
35 #include <ssl.h>
36 #endif /* HAVE_NSS */
37
38 #include "camel.h"
39 #include "camel-iconv.h"
40 #include "camel-certdb.h"
41 #include "camel-mime-utils.h"
42
43 gboolean camel_verbose_debug = FALSE;
44
45 static void
46 camel_shutdown (void)
47 {
48         CamelCertDB *certdb;
49         
50 #ifdef HAVE_NSS
51         NSS_Shutdown ();
52         
53         PR_Cleanup ();
54 #endif /* HAVE_NSS */
55         
56         certdb = camel_certdb_get_default ();
57         if (certdb) {
58                 camel_certdb_save (certdb);
59                 camel_object_unref (certdb);
60         }
61         
62         camel_iconv_shutdown ();
63 }
64
65 gint
66 camel_init (const char *configdir, gboolean nss_init)
67 {
68         CamelCertDB *certdb;
69         char *path;
70         
71 #ifdef ENABLE_THREADS
72 #ifdef G_THREADS_ENABLED        
73         /*g_thread_init (NULL);*/
74 #else /* G_THREADS_ENABLED */
75         g_warning ("Threads are not supported by your version of glib");
76 #endif /* G_THREADS_ENABLED */
77 #endif /* ENABLE_THREADS */
78         
79         if (getenv ("CAMEL_VERBOSE_DEBUG"))
80                 camel_verbose_debug = TRUE;
81         
82         /* initialise global camel_object_type */
83         camel_object_get_type();
84         
85         camel_iconv_init ();
86         
87         camel_mime_utils_init ();
88         
89 #ifdef HAVE_NSS
90         if (nss_init) {
91                 PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10);
92                 
93                 if (NSS_InitReadWrite (configdir) == SECFailure) {
94                         /* fall back on using volatile dbs? */
95                         if (NSS_NoDB_Init (configdir) == SECFailure) {
96                                 g_warning ("Failed to initialize NSS");
97                                 return -1;
98                         }
99                 }
100                 
101                 NSS_SetDomesticPolicy ();
102                 
103                 SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
104                 SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
105                 SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
106                 SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
107         }
108 #endif /* HAVE_NSS */
109         
110         path = g_strdup_printf ("%s/camel-cert.db", configdir);
111         certdb = camel_certdb_new ();
112         camel_certdb_set_filename (certdb, path);
113         g_free (path);
114         
115         /* if we fail to load, who cares? it'll just be a volatile certdb */
116         camel_certdb_load (certdb);
117         
118         /* set this certdb as the default db */
119         camel_certdb_set_default (certdb);
120         
121         camel_object_unref (certdb);
122         
123         g_atexit (camel_shutdown);
124         
125         return 0;
126 }