2006-12-26 [wwp] 2.6.1cvs70
[claws.git] / src / plugins / pgpinline / plugin.c
index be513700922de0ea493b4eb96aea402eba126379..b1a093139fdbf4731f48191c706362296d7000fa 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2003 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Claws Mail team
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -14,7 +14,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
 #ifdef HAVE_CONFIG_H
 #include <glib.h>
 #include <glib/gi18n.h>
 
-#include "sylpheed.h"
 #include "version.h"
 #include "pgpinline.h"
+#include "plugin.h"
+
+#define PLUGIN_NAME (_("PGP/inline"))
 
 gint plugin_init(gchar **error)
 {
-       if ((sylpheed_get_version() > VERSION_NUMERIC)) {
-               *error = g_strdup("Your sylpheed version is newer than the version the plugin was built with");
-               return -1;
-       }
-
-       if ((sylpheed_get_version() < MAKE_NUMERIC_VERSION(1, 9, 12, 49))) {
-               *error = g_strdup("Your sylpheed version is too old");
-               return -1;
-       }
+       if (!check_plugin_version(MAKE_NUMERIC_VERSION(2, 1, 0, 1),
+                               VERSION_NUMERIC, PLUGIN_NAME, error))
+               return -1;
 
        pgpinline_init();
 
@@ -54,20 +50,35 @@ void plugin_done(void)
 
 const gchar *plugin_name(void)
 {
-       return _("PGP/inline");
+       return PLUGIN_NAME;
 }
 
 const gchar *plugin_desc(void)
 {
-       return _("This plugin enables signature verification of "
-                "digitally signed messages, and decryption of "
-                "encrypted messages. \n"
+       return _("This plugin handles the deprecated Inline method of "
+                "signing and/or encrypting mails. You can decrypt mails, "
+                 "verify signatures or sign and encrypt your own mails.\n"
+                "\n"
+                "It can be selected as the Default Privacy System in "
+                "/Configuration/[Account Preferences]/Privacy and when "
+                "composing a message from /Options/Privacy System\n"
                 "\n"
-                "It also lets you send signed and encrypted "
-                "messages.");
+                "The plugin uses the GPGME library as a wrapper for GnuPG.\n"
+                "\n"
+                "GPGME is copyright 2001 by Werner Koch <dd9jn@gnu.org>");
 }
 
 const gchar *plugin_type(void)
 {
        return "GTK2";
 }
+
+const gchar *plugin_licence(void)
+{
+       return "GPL";
+}
+
+const gchar *plugin_version(void)
+{
+       return VERSION;
+}