2011-02-16 [paul] 3.7.8cvs57
[claws.git] / src / plugins / pgpmime / plugin.c
1 /*
2  * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2011 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 3 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, see <http://www.gnu.org/licenses/>.
17  * 
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 "pgpmime.h"
31 #include "plugin.h"
32
33 #define PLUGIN_NAME (_("PGP/MIME"))
34
35 gint plugin_init(gchar **error)
36 {
37         if (!check_plugin_version(MAKE_NUMERIC_VERSION(2,9,2,72),
38                                 VERSION_NUMERIC, PLUGIN_NAME, error))
39                 return -1;
40
41         pgpmime_init();
42
43         return 0;       
44 }
45
46 gboolean plugin_done(void)
47 {
48         pgpmime_done();
49         return TRUE;
50 }
51
52 const gchar *plugin_name(void)
53 {
54         return PLUGIN_NAME;
55 }
56
57 const gchar *plugin_desc(void)
58 {
59         return _("This plugin handles PGP/MIME signed and/or encrypted "
60                  "mails. You can decrypt mails, verify signatures or "
61                  "sign and encrypt your own mails.\n"
62                  "\n"
63                  "It can be selected as the Default Privacy System in "
64                  "/Configuration/[Account Preferences]/Privacy and when "
65                  "composing a message from /Options/Privacy System\n"
66                  "\n"
67                  "The plugin uses the GPGME library as a wrapper for GnuPG.\n"
68                  "\n"
69                  "GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>");
70 }
71
72 const gchar *plugin_type(void)
73 {
74         return "GTK2";
75 }
76
77 const gchar *plugin_licence(void)
78 {
79         return "GPL3+";
80 }
81
82 const gchar *plugin_version(void)
83 {
84         return VERSION;
85 }