Since all of the Mozilla libs (including NSPR and NSS) correctly handle
[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 Helix Code, Inc. (http://www.helixcode.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 #include <config.h>
27 #include "camel.h"
28 #include <unicode.h>
29 #ifdef HAVE_NSS
30 #include <mozilla/nspr.h>
31 #include <mozilla/prthread.h>
32 #include <nss.h>
33 #include <ssl.h>
34 #endif /* HAVE_NSS */
35
36 gboolean camel_verbose_debug = FALSE;
37
38 gint
39 camel_init (const char *certdb)
40 {
41 #ifdef ENABLE_THREADS
42 #ifdef G_THREADS_ENABLED        
43         /*g_thread_init (NULL);*/
44 #else /* G_THREADS_ENABLED */
45         g_warning ("Threads are not supported by your version of glib");
46 #endif /* G_THREADS_ENABLED */
47 #endif /* ENABLE_THREADS */
48         
49         if (getenv ("CAMEL_VERBOSE_DEBUG"))
50                 camel_verbose_debug = TRUE;
51         
52         unicode_init ();
53         
54 #ifdef HAVE_NSS
55         PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10);
56         
57         if (NSS_Init (certdb) == SECFailure) {
58                 g_warning ("Failed to initialize NSS");
59                 return -1;
60         }
61         
62         NSS_SetDomesticPolicy ();
63         
64         SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
65         SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
66         SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
67         SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
68 #endif /* HAVE_NSS */
69         
70         return 0;
71 }
72
73 void
74 camel_shutdown (void)
75 {
76 #ifdef HAVE_NSS
77         NSS_Shutdown ();
78         
79         PR_Cleanup ();
80 #endif /* HAVE_NSS */
81 }