2007-06-21 [colin] 2.9.2cvs72
[claws.git] / src / plugins / pgpcore / plugin.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 the Claws Mail 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include <stddef.h>
25 #include <glib.h>
26 #include <glib/gi18n.h>
27
28 #include "version.h"
29 #include "common/claws.h"
30 #include "sgpgme.h"
31 #include "prefs_gpg.h"
32 #include "pgp_viewer.h"
33 #include "plugin.h"
34
35 #define PLUGIN_NAME (_("PGP/Core"))
36
37 gint plugin_init(gchar **error)
38 {
39         if (!check_plugin_version(MAKE_NUMERIC_VERSION(2,9,2,72),
40                                 VERSION_NUMERIC, PLUGIN_NAME, error))
41                 return -1;
42
43         sgpgme_init();
44         prefs_gpg_init();
45         sgpgme_check_create_key();
46         pgp_viewer_init();
47         return 0;       
48 }
49
50 gboolean plugin_done(void)
51 {
52         pgp_viewer_done();
53         prefs_gpg_done();
54         sgpgme_done();
55         return TRUE;
56 }
57
58 const gchar *plugin_name(void)
59 {
60         return PLUGIN_NAME;
61 }
62
63 const gchar *plugin_desc(void)
64 {
65         return _("This plugin handles PGP core operations, it is used by other "
66                  "plugins, like PGP/Mime.\n"
67                  "\n"
68                  "Options can be found in /Configuration/Preferences/Plugins/GPG "
69                  "and /Configuration/[Account Preferences]/Plugins/GPG\n"
70                  "\n"
71                  "The plugin uses the GPGME library as a wrapper for GnuPG.\n"
72                  "\n"
73                  "GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>");
74 }
75
76 const gchar *plugin_type(void)
77 {
78         return "GTK2";
79 }
80
81 const gchar *plugin_licence(void)
82 {
83         return "GPL";
84 }
85
86 const gchar *plugin_version(void)
87 {
88         return VERSION;
89 }
90
91 struct PluginFeature *plugin_provides(void)
92 {
93         static struct PluginFeature features[] = 
94                 { {PLUGIN_PRIVACY, N_("Core operations")},
95                   {PLUGIN_NOTHING, NULL}};
96         return features;
97 }