0.9.6claws31
[claws.git] / src / privacy.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto & the Sylpheed-Claws team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 #include <glib.h>
21
22 #include "privacy.h"
23 #include "procmime.h"
24
25 static GSList *systems = NULL;
26
27 void privacy_register_system(PrivacySystem *system)
28 {
29         systems = g_slist_append(systems, system);
30 }
31
32 void privacy_unregister_system(PrivacySystem *system)
33 {
34         systems = g_slist_remove(systems, system);
35 }
36
37 void privacy_free_privacydata(PrivacyData *privacydata)
38 {
39         g_return_if_fail(privacydata != NULL);
40
41         privacydata->system->free_privacydata(privacydata);
42 }
43
44 gboolean privacy_mimeinfo_is_signed(MimeInfo *mimeinfo)
45 {
46         GSList *cur;
47         g_return_val_if_fail(mimeinfo != NULL, FALSE);
48
49         if (mimeinfo->privacy != NULL) {
50                 PrivacySystem *system = mimeinfo->privacy->system;
51
52                 if (system->is_signed != NULL)
53                         return system->is_signed(mimeinfo);
54                 else
55                         return FALSE;
56         }
57
58         for(cur = systems; cur != NULL; cur = g_slist_next(cur)) {
59                 PrivacySystem *system = (PrivacySystem *) cur->data;
60
61                 if(system->is_signed != NULL && system->is_signed(mimeinfo))
62                         return TRUE;                    
63         }
64
65         return FALSE;
66 }
67
68 const gchar *privacy_get_signer(MimeInfo *mimeinfo)
69 {
70         g_return_val_if_fail(mimeinfo != NULL, NULL);
71
72         return "Dummy";
73 }
74
75 gboolean privacy_mimeinfo_is_encrypted(MimeInfo *mimeinfo)
76 {
77         g_return_val_if_fail(mimeinfo != NULL, FALSE);
78
79         return FALSE;
80 }