2006-11-27 [paul] 2.6.0cvs64
[claws.git] / src / plugins / pgpmime / plugin.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and 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 "pgpmime.h"
31
32 gint plugin_init(gchar **error)
33 {
34         if ((claws_get_version() > VERSION_NUMERIC)) {
35                 *error = g_strdup(_("Your version of Claws Mail is newer than the version the PGP/MIME plugin was built with"));
36                 return -1;
37         }
38
39         if ((claws_get_version() < MAKE_NUMERIC_VERSION(2, 1, 0, 1))) {
40                 *error = g_strdup(_("Your version of Claws Mail is too old for the PGP/MIME plugin"));
41                 return -1;
42         }
43
44         pgpmime_init();
45
46         return 0;       
47 }
48
49 void plugin_done(void)
50 {
51         pgpmime_done();
52 }
53
54 const gchar *plugin_name(void)
55 {
56         return _("PGP/MIME");
57 }
58
59 const gchar *plugin_desc(void)
60 {
61         return _("This plugin handles PGP/MIME signed and/or encrypted "
62                  "mails. You can decrypt mails, verify signatures or "
63                  "sign and encrypt your own mails.\n"
64                  "\n"
65                  "It can be selected as the Default Privacy System in "
66                  "/Configuration/[Account Preferences]/Privacy and when "
67                  "composing a message from /Options/Privacy System\n"
68                  "\n"
69                  "The plugin uses the GPGME library as a wrapper for GnuPG.\n"
70                  "\n"
71                  "GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>");
72 }
73
74 const gchar *plugin_type(void)
75 {
76         return "GTK2";
77 }
78
79 const gchar *plugin_licence(void)
80 {
81         return "GPL";
82 }
83
84 const gchar *plugin_version(void)
85 {
86         return VERSION;
87 }