Don't reuse the exception if it has already been set.
[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 the GNU General Public License as 
12  * published by the Free Software Foundation; either version 2 of the
13  * License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23  * USA
24  */
25
26 #ifdef HAVE_CONFIG_H
27 #include <config.h>
28 #endif
29
30 #include <signal.h>
31
32 #ifdef HAVE_NSS
33 #include <nspr.h>
34 #include <prthread.h>
35 #include "nss.h"      /* Don't use <> here or it will include the system nss.h instead */
36 #include <ssl.h>
37 #endif /* HAVE_NSS */
38
39 #include "camel.h"
40 #include "camel-charset-map.h"
41
42 gboolean camel_verbose_debug = FALSE;
43
44 #ifdef HAVE_NSS
45 static void
46 camel_shutdown (void)
47 {
48         NSS_Shutdown ();
49         
50         PR_Cleanup ();
51 }
52 #endif /* HAVE_NSS */
53
54 gint
55 camel_init (const char *configdir, gboolean nss_init)
56 {
57 #ifdef ENABLE_THREADS
58 #ifdef G_THREADS_ENABLED        
59         /*g_thread_init (NULL);*/
60 #else /* G_THREADS_ENABLED */
61         g_warning ("Threads are not supported by your version of glib");
62 #endif /* G_THREADS_ENABLED */
63 #endif /* ENABLE_THREADS */
64         
65         if (getenv ("CAMEL_VERBOSE_DEBUG"))
66                 camel_verbose_debug = TRUE;
67         
68         camel_charset_map_init ();
69         
70 #ifdef HAVE_NSS
71         if (nss_init) {
72                 PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10);
73                 
74                 if (NSS_InitReadWrite (configdir) == SECFailure) {
75                         /* fall back on using volatile dbs? */
76                         if (NSS_NoDB_Init (configdir) == SECFailure) {
77                                 g_warning ("Failed to initialize NSS");
78                                 return -1;
79                         }
80                 }
81                 
82                 NSS_SetDomesticPolicy ();
83                 
84                 g_atexit (camel_shutdown);
85         }
86         
87         SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
88         SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
89         SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
90         SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
91 #endif /* HAVE_NSS */
92         
93         return 0;
94 }