From 1459f88164b7f9f1e831125734450745d6ae96f2 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sun, 13 Sep 2015 12:40:09 -0400
Subject: [PATCH] Enigma: Add option to disable encryption/signing features

---
 plugins/enigma/enigma.php             |   37 +++++++++++++++++++++++++++++++------
 plugins/enigma/localization/en_US.inc |    1 +
 plugins/enigma/config.inc.php.dist    |    3 +++
 3 files changed, 35 insertions(+), 6 deletions(-)

diff --git a/plugins/enigma/config.inc.php.dist b/plugins/enigma/config.inc.php.dist
index 17e72de..17e3265 100644
--- a/plugins/enigma/config.inc.php.dist
+++ b/plugins/enigma/config.inc.php.dist
@@ -19,6 +19,9 @@
 // Enables messages decryption feature.
 $config['enigma_decryption'] = true;
 
+// Enables messages encryption and signing feature.
+$config['enigma_encryption'] = true;
+
 // Enable signing all messages by default
 $config['enigma_sign_all'] = false;
 
diff --git a/plugins/enigma/enigma.php b/plugins/enigma/enigma.php
index 1ac619c..bda6ed1 100644
--- a/plugins/enigma/enigma.php
+++ b/plugins/enigma/enigma.php
@@ -44,20 +44,25 @@
 
             $this->register_action('plugin.enigmaimport', array($this, 'import_file'));
 
+            // load the Enigma plugin configuration
+            $this->load_config();
+
+            $enabled = $this->rc->config->get('enigma_encryption', true);
+
             // message displaying
             if ($this->rc->action == 'show' || $this->rc->action == 'preview') {
                 $this->add_hook('message_load', array($this, 'message_load'));
                 $this->add_hook('template_object_messagebody', array($this, 'message_output'));
             }
             // message composing
-            else if ($this->rc->action == 'compose') {
+            else if ($enabled && $this->rc->action == 'compose') {
                 $this->add_hook('message_compose_body', array($this, 'message_compose'));
 
                 $this->load_ui();
                 $this->ui->init();
             }
             // message sending (and draft storing)
-            else if ($this->rc->action == 'send') {
+            else if ($enabled && $this->rc->action == 'send') {
                 $this->add_hook('message_ready', array($this, 'message_ready'));
             }
 
@@ -236,6 +241,25 @@
 
         $p['blocks']['main']['name'] = $this->gettext('mainoptions');
 
+        if (!isset($no_override['enigma_encryption'])) {
+            if (!$p['current']) {
+                $p['blocks']['main']['content'] = true;
+                return $p;
+            }
+
+            $field_id = 'rcmfd_enigma_encryption';
+            $input    = new html_checkbox(array(
+                    'name'  => '_enigma_encryption',
+                    'id'    => $field_id,
+                    'value' => 1,
+            ));
+
+            $p['blocks']['main']['options']['enigma_encryption'] = array(
+                'title'   => html::label($field_id, $this->gettext('supportencryption')),
+                'content' => $input->show(intval($this->rc->config->get('enigma_encryption'))),
+            );
+        }
+
         if (!isset($no_override['enigma_signatures'])) {
             if (!$p['current']) {
                 $p['blocks']['main']['content'] = true;
@@ -348,10 +372,11 @@
     {
         if ($p['section'] == 'enigma') {
             $p['prefs'] = array(
-                'enigma_signatures' => (bool) rcube_utils::get_input_value('_enigma_signatures', rcube_utils::INPUT_POST),
-                'enigma_decryption' => (bool) rcube_utils::get_input_value('_enigma_decryption', rcube_utils::INPUT_POST),
-                'enigma_sign_all'      => intval(rcube_utils::get_input_value('_enigma_sign_all', rcube_utils::INPUT_POST)),
-                'enigma_encrypt_all'   => intval(rcube_utils::get_input_value('_enigma_encrypt_all', rcube_utils::INPUT_POST)),
+                'enigma_signatures'    => (bool) rcube_utils::get_input_value('_enigma_signatures', rcube_utils::INPUT_POST),
+                'enigma_decryption'    => (bool) rcube_utils::get_input_value('_enigma_decryption', rcube_utils::INPUT_POST),
+                'enigma_encryption'    => (bool) rcube_utils::get_input_value('_enigma_encryption', rcube_utils::INPUT_POST),
+                'enigma_sign_all'      => (bool) rcube_utils::get_input_value('_enigma_sign_all', rcube_utils::INPUT_POST),
+                'enigma_encrypt_all'   => (bool) rcube_utils::get_input_value('_enigma_encrypt_all', rcube_utils::INPUT_POST),
                 'enigma_password_time' => intval(rcube_utils::get_input_value('_enigma_password_time', rcube_utils::INPUT_POST)),
             );
         }
diff --git a/plugins/enigma/localization/en_US.inc b/plugins/enigma/localization/en_US.inc
index 4e4984a..7cf3761 100644
--- a/plugins/enigma/localization/en_US.inc
+++ b/plugins/enigma/localization/en_US.inc
@@ -34,6 +34,7 @@
 $labels['keyattfound'] = 'This message contains attached PGP key(s).';
 $labels['keyattimport'] = 'Import key(s)';
 
+$labels['supportencryption'] = 'Enable message encryption and signing';
 $labels['supportsignatures'] = 'Enable message signatures verification';
 $labels['supportdecryption'] = 'Enable message decryption';
 $labels['signdefault'] = 'Sign all messages by default';

--
Gitblit v1.9.1