blob: 24197951f3f8175996bc6e501f61381d26207386 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/*
* session.c: handles the session infomration and resource manipulation
*
* Author:
* Miguel de Icaza (miguel@gnu.org)
*
* (C) 2000 Helix Code, Inc. http://www.helixcode.com
*/
#include <config.h>
#include "session.h"
#include "e-util/e-setup.h"
#include "camel/camel.h"
SessionStore *default_session;
static void
session_providers_init (void)
{
camel_provider_register_as_module (CAMEL_PROVIDERDIR "/libcamelmbox.so");
}
SessionStore *
session_store_new (const char *uri)
{
SessionStore *ss = g_new (SessionStore, 1);
ss->session = camel_session_new ();
ss->store = camel_session_get_store (ss->session, uri);
g_assert (ss->session);
g_assert (ss->store);
return ss;
}
void
session_store_destroy (SessionStore *ss)
{
g_assert (ss != NULL);
gtk_object_unref (GTK_OBJECT (ss->store));
gtk_object_unref (GTK_OBJECT (ss->session));
g_free (ss);
}
static void
init_default_session (void)
{
char *url;
url = g_strconcat ("mbox://", evolution_folders_dir, NULL);
default_session = session_store_new (url);
g_free (url);
}
void
session_init (void)
{
e_setup_base_dir ();
camel_init ();
session_providers_init ();
init_default_session ();
}
|