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