Same as the ones below.
[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
63 gint
64 camel_init (const char *configdir, gboolean nss_init)
65 {
66         CamelCertDB *certdb;
67         char *path;
68         
69 #ifdef ENABLE_THREADS
70 #ifdef G_THREADS_ENABLED        
71         /*g_thread_init (NULL);*/
72 #else /* G_THREADS_ENABLED */
73         g_warning ("Threads are not supported by your version of glib");
74 #endif /* G_THREADS_ENABLED */
75 #endif /* ENABLE_THREADS */
76         
77         if (getenv ("CAMEL_VERBOSE_DEBUG"))
78                 camel_verbose_debug = TRUE;
79         
80         /* initialise global camel_object_type */
81         camel_object_get_type();
82         
83         camel_mime_utils_init ();
84         
85 #ifdef HAVE_NSS
86         if (nss_init) {
87                 PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10);
88                 
89                 if (NSS_InitReadWrite (configdir) == SECFailure) {
90                         /* fall back on using volatile dbs? */
91                         if (NSS_NoDB_Init (configdir) == SECFailure) {
92                                 g_warning ("Failed to initialize NSS");
93                                 return -1;
94                         }
95                 }
96                 
97                 NSS_SetDomesticPolicy ();
98                 
99                 SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
100                 SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
101                 SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
102                 SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
103         }
104 #endif /* HAVE_NSS */
105         
106         path = g_strdup_printf ("%s/camel-cert.db", configdir);
107         certdb = camel_certdb_new ();
108         camel_certdb_set_filename (certdb, path);
109         g_free (path);
110         
111         /* if we fail to load, who cares? it'll just be a volatile certdb */
112         camel_certdb_load (certdb);
113         
114         /* set this certdb as the default db */
115         camel_certdb_set_default (certdb);
116         
117         camel_object_unref (certdb);
118         
119         g_atexit (camel_shutdown);
120         
121         return 0;
122 }