modify PGP/MIME plugin's description
[claws.git] / src / plugins / pgpmime / 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
26 #include "intl.h"
27
28 #include "version.h"
29 #include "sgpgme.h"
30 #include "pgpmime.h"
31
32 gint plugin_init(gchar **error)
33 {
34         if ((sylpheed_get_version() > VERSION_NUMERIC)) {
35                 *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
36                 return -1;
37         }
38
39         if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(0, 9, 12, 34))) {
40                 *error = g_strdup("Your sylpheed version is too old");
41                 return -1;
42         }
43
44         sgpgme_init();
45         pgpmime_init();
46
47         return 0;       
48 }
49
50 void plugin_done(void)
51 {
52         pgpmime_done();
53         sgpgme_done();
54 }
55
56 const gchar *plugin_name(void)
57 {
58         return _("PGP/MIME");
59 }
60
61 const gchar *plugin_desc(void)
62 {
63         return _("This plugin enables signature verification of "
64                  "digitally signed messages, and decryption of "
65                  "encrypted messages. \n"
66                  "\n"
67                  "You don't need it to send signed or encrypted emails.");
68 }
69
70 const gchar *plugin_type(void)
71 {
72         return "GTK";
73 }