Update the copyrights, replacing Helix Code with Ximian and
[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 #ifdef HAVE_NSS
31 #include <nspr.h>
32 #include <prthread.h>
33 #include "nss.h"      /* Don't use <> here or it will include the system nss.h instead */
34 #include <ssl.h>
35 #endif /* HAVE_NSS */
36
37 #include "camel.h"
38
39 gboolean camel_verbose_debug = FALSE;
40
41 #ifdef HAVE_NSS
42 static void
43 camel_shutdown (void)
44 {
45         NSS_Shutdown ();
46         
47         PR_Cleanup ();
48 }
49 #endif /* HAVE_NSS */
50
51 gint
52 camel_init (const char *configdir, gboolean nss_init)
53 {
54 #ifdef ENABLE_THREADS
55 #ifdef G_THREADS_ENABLED        
56         /*g_thread_init (NULL);*/
57 #else /* G_THREADS_ENABLED */
58         g_warning ("Threads are not supported by your version of glib");
59 #endif /* G_THREADS_ENABLED */
60 #endif /* ENABLE_THREADS */
61         
62         if (getenv ("CAMEL_VERBOSE_DEBUG"))
63                 camel_verbose_debug = TRUE;
64         
65 #ifdef HAVE_NSS
66         if (nss_init) {
67                 PR_Init (PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 10);
68                 
69                 if (NSS_InitReadWrite (configdir) == SECFailure) {
70                         /* fall back on using volatile dbs? */
71                         if (NSS_NoDB_Init (configdir) == SECFailure) {
72                                 g_warning ("Failed to initialize NSS");
73                                 return -1;
74                         }
75                 }
76                 
77                 NSS_SetDomesticPolicy ();
78                 
79                 g_atexit (camel_shutdown);
80         }
81         
82         SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
83         SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
84         SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
85         SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
86 #endif /* HAVE_NSS */
87         
88         return 0;
89 }