Uses an SSL socket now although there's still a few things missing (like
[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
30 gboolean camel_verbose_debug = FALSE;
31
32 gint
33 camel_init(void)
34 {
35 #ifdef ENABLE_THREADS
36 #ifdef G_THREADS_ENABLED        
37         /*g_thread_init (NULL);*/
38 #else  /* G_THREADS_ENABLED */
39         printf ("Threads are not supported by your version of glib\n");
40 #endif /* G_THREADS_ENABLED */
41 #endif /* ENABLE_THREADS */
42
43         if (getenv ("CAMEL_VERBOSE_DEBUG"))
44                 camel_verbose_debug = TRUE;
45
46         unicode_init ();
47
48         return 0;
49 }
50
51 #ifdef U_CANT_TOUCH_THIS
52 #include <ssl.h>
53 #include <nss.h>
54
55 gint
56 camel_ssl_init (char *configdir, gboolean nss_init)
57 {
58 #ifdef ENABLE_THREADS
59 #ifdef G_THREADS_ENABLED        
60         /*g_thread_init (NULL);*/
61 #else  /* G_THREADS_ENABLED */
62         printf ("Threads are not supported by your version of glib\n");
63 #endif /* G_THREADS_ENABLED */
64 #endif /* ENABLE_THREADS */
65         
66         if (getenv ("CAMEL_VERBOSE_DEBUG"))
67                 camel_verbose_debug = TRUE;
68         
69         unicode_init ();
70         
71         if (nss_init) {
72                 PR_init ();
73                 
74                 if (NSS_init (configdir) == SECFailure)
75                         return -1;
76                 
77                 /* FIXME: Erm, use appropriate policy? */
78                 NSS_SetDomesticPolicy ();
79         }
80         
81         SSL_OptionSetDefault (SSL_ENABLE_SSL2, PR_TRUE);
82         SSL_OptionSetDefault (SSL_ENABLE_SSL3, PR_TRUE);
83         SSL_OptionSetDefault (SSL_ENABLE_TLS, PR_TRUE);
84         SSL_OptionSetDefault (SSL_V2_COMPATIBLE_HELLO, PR_TRUE /* maybe? */);
85         
86         return 0;
87 }
88 #endif