2005-08-19 [paul] 1.9.13cvs40
[claws.git] / src / plugins / pgpcore / plugin.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2003 Hiroyuki Yamamoto
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 #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/sylpheed.h"
30 #include "sgpgme.h"
31 #include "prefs_gpg.h"
32
33 gint plugin_init(gchar **error)
34 {
35         if ((sylpheed_get_version() > VERSION_NUMERIC)) {
36                 *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
37                 return -1;
38         }
39
40         if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(1, 9, 12, 40))) {
41                 *error = g_strdup("Your sylpheed version is too old");
42                 return -1;
43         }
44
45         sgpgme_init();
46         prefs_gpg_init();
47
48         return 0;       
49 }
50
51 void plugin_done(void)
52 {
53         prefs_gpg_done();
54         sgpgme_done();
55 }
56
57 const gchar *plugin_name(void)
58 {
59         return _("PGP/Core");
60 }
61
62 const gchar *plugin_desc(void)
63 {
64         return _("This plugin handles PGP core operations. It is used by other\n"
65                  "plugins, like PGP/Mime.\n\n"
66                  "GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>\n");
67 }
68
69 const gchar *plugin_type(void)
70 {
71         return "GTK2";
72 }