Big header cleanups and nntp compile fix
[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 #ifdef HAVE_CONFIG_H
27 #include <config.h>
28 #endif
29
30 #include <unicode.h>
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
40 gboolean camel_verbose_debug = FALSE;
41
42 gint
43 camel_init (const char *certdb_dir, gboolean nss_init)
44 {
45 #ifdef ENABLE_THREADS
46 #ifdef G_THREADS_ENABLED        
47         /*g_thread_init (NULL);*/
48 #else /* G_THREADS_ENABLED */
49         g_warning ("Threads are not supported by your version of glib");
50 #endif /* G_THREADS_ENABLED */
51 #endif /* ENABLE_THREADS */
52         
53         if (getenv ("CAMEL_VERBOSE_DEBUG"))
54                 camel_verbose_debug = TRUE;
55         
56         unicode_init ();
57         
58 #ifdef HAVE_NSS
59         if (nss_init) {
60                 PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10);
61                 
62                 if (NSS_Init (certdb_dir) == SECFailure) {
63                         g_warning ("Failed to initialize NSS");
64                         return -1;
65                 }
66                 
67                 NSS_SetDomesticPolicy ();
68         }
69         
70         SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
71         SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
72         SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
73         SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
74 #endif /* HAVE_NSS */
75         
76         return 0;
77 }
78
79 void
80 camel_shutdown (void)
81 {
82 #ifdef HAVE_NSS
83         NSS_Shutdown ();
84         
85         PR_Cleanup ();
86 #endif /* HAVE_NSS */
87 }