From: Daniel Kahn Gillmor Date: Thu, 10 Dec 2015 03:39:45 +0000 (+1900) Subject: [PATCH 8/9] add --try-decrypt to notmuch insert X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=ef1a1846a9b82f3630192fc4a219e1461d3abd18;p=notmuch-archives.git [PATCH 8/9] add --try-decrypt to notmuch insert --- diff --git a/79/87dbdcb75717f8a1908275ffe6b97d76a8ef6a b/79/87dbdcb75717f8a1908275ffe6b97d76a8ef6a new file mode 100644 index 000000000..cadf4321c --- /dev/null +++ b/79/87dbdcb75717f8a1908275ffe6b97d76a8ef6a @@ -0,0 +1,161 @@ +Return-Path: +X-Original-To: notmuch@notmuchmail.org +Delivered-To: notmuch@notmuchmail.org +Received: from localhost (localhost [127.0.0.1]) + by arlo.cworth.org (Postfix) with ESMTP id 569B66DE1601 + for ; Wed, 9 Dec 2015 19:40:16 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at cworth.org +X-Spam-Flag: NO +X-Spam-Score: -0.032 +X-Spam-Level: +X-Spam-Status: No, score=-0.032 tagged_above=-999 required=5 + tests=[AWL=-0.032] autolearn=disabled +Received: from arlo.cworth.org ([127.0.0.1]) + by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) + with ESMTP id 7jL3-B0Ubn2n for ; + Wed, 9 Dec 2015 19:40:14 -0800 (PST) +Received: from che.mayfirst.org (che.mayfirst.org [209.234.253.108]) + by arlo.cworth.org (Postfix) with ESMTP id B3AC06DE18F2 + for ; Wed, 9 Dec 2015 19:40:06 -0800 (PST) +Received: from fifthhorseman.net (unknown [38.109.115.130]) + by che.mayfirst.org (Postfix) with ESMTPSA id 833C9F991 + for ; Wed, 9 Dec 2015 22:40:04 -0500 (EST) +Received: by fifthhorseman.net (Postfix, from userid 1000) + id C1626212D1; Wed, 9 Dec 2015 22:40:03 -0500 (EST) +From: Daniel Kahn Gillmor +To: Notmuch Mail +Subject: [PATCH 8/9] add --try-decrypt to notmuch insert +Date: Wed, 9 Dec 2015 22:39:45 -0500 +Message-Id: <1449718786-28000-9-git-send-email-dkg@fifthhorseman.net> +X-Mailer: git-send-email 2.6.2 +In-Reply-To: <1449718786-28000-1-git-send-email-dkg@fifthhorseman.net> +References: <1449718786-28000-1-git-send-email-dkg@fifthhorseman.net> +X-BeenThere: notmuch@notmuchmail.org +X-Mailman-Version: 2.1.20 +Precedence: list +List-Id: "Use and development of the notmuch mail system." + +List-Unsubscribe: , + +List-Archive: +List-Post: +List-Help: +List-Subscribe: , + +X-List-Received-Date: Thu, 10 Dec 2015 03:40:16 -0000 + +allow an incoming message to be delivered while indexing the +cleartext. + +This requires the secret keys for the message to be available. For +the moment, the most functional approach is to ensure that gpg-agent +is running and knows about any secret keys that might be useful to +decrypt incoming mail. + +Any additional recommendations for how to phrase the caveat for this +option are welcome. + +If ~/.notmuch-config contains crypto.gpg_path, pass it into the +database. +--- + completion/notmuch-completion.bash | 2 +- + doc/man1/notmuch-insert.rst | 11 +++++++++++ + notmuch-insert.c | 21 ++++++++++++++++++--- + 3 files changed, 30 insertions(+), 4 deletions(-) + +diff --git a/completion/notmuch-completion.bash b/completion/notmuch-completion.bash +index cc58392..4bc9040 100644 +--- a/completion/notmuch-completion.bash ++++ b/completion/notmuch-completion.bash +@@ -224,7 +224,7 @@ _notmuch_insert() + ! $split && + case "${cur}" in + --*) +- local options="--create-folder --folder= --keep --no-hooks ${_notmuch_shared_options}" ++ local options="--create-folder --folder= --keep --no-hooks --try-decrypt ${_notmuch_shared_options}" + compopt -o nospace + COMPREPLY=( $(compgen -W "$options" -- ${cur}) ) + return +diff --git a/doc/man1/notmuch-insert.rst b/doc/man1/notmuch-insert.rst +index 2c9c0d0..9c76b30 100644 +--- a/doc/man1/notmuch-insert.rst ++++ b/doc/man1/notmuch-insert.rst +@@ -50,6 +50,17 @@ Supported options for **insert** include + ``--no-hooks`` + Prevent hooks from being run. + ++ ``--try-decrypt`` ++ ++ If the message is encrypted, try to decrypt the message while ++ indexing. If decryption is successful, index the cleartext ++ itself. The message is stored to disk in its original form ++ (ciphertext). Be aware that the index is likely sufficient to ++ reconstruct the cleartext of the message itself, so please ++ ensure that the notmuch message index is adequately ++ protected. DO NOT USE THIS FLAG without considering the ++ security of your index. ++ + EXIT STATUS + =========== + +diff --git a/notmuch-insert.c b/notmuch-insert.c +index 5205c17..9742574 100644 +--- a/notmuch-insert.c ++++ b/notmuch-insert.c +@@ -378,12 +378,15 @@ FAIL: + */ + static notmuch_status_t + add_file (notmuch_database_t *notmuch, const char *path, tag_op_list_t *tag_ops, +- notmuch_bool_t synchronize_flags, notmuch_bool_t keep) ++ notmuch_bool_t synchronize_flags, notmuch_bool_t keep, notmuch_bool_t try_decrypt) + { + notmuch_message_t *message; + notmuch_status_t status; + +- status = notmuch_database_add_message (notmuch, path, &message); ++ if (try_decrypt) ++ status = notmuch_database_add_message_try_decrypt (notmuch, path, &message); ++ else ++ status = notmuch_database_add_message (notmuch, path, &message); + if (status == NOTMUCH_STATUS_SUCCESS) { + status = tag_op_list_apply (message, tag_ops, 0); + if (status) { +@@ -455,6 +458,7 @@ notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]) + notmuch_bool_t create_folder = FALSE; + notmuch_bool_t keep = FALSE; + notmuch_bool_t no_hooks = FALSE; ++ notmuch_bool_t try_decrypt = FALSE; + notmuch_bool_t synchronize_flags; + const char *maildir; + char *newpath; +@@ -466,6 +470,7 @@ notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]) + { NOTMUCH_OPT_BOOLEAN, &create_folder, "create-folder", 0, 0 }, + { NOTMUCH_OPT_BOOLEAN, &keep, "keep", 0, 0 }, + { NOTMUCH_OPT_BOOLEAN, &no_hooks, "no-hooks", 'n', 0 }, ++ { NOTMUCH_OPT_BOOLEAN, &try_decrypt, "try-decrypt", 0, 0 }, + { NOTMUCH_OPT_INHERIT, (void *) ¬much_shared_options, NULL, 0, 0 }, + { NOTMUCH_OPT_END, 0, 0, 0, 0 } + }; +@@ -545,8 +550,18 @@ notmuch_insert_command (notmuch_config_t *config, int argc, char *argv[]) + return EXIT_FAILURE; + } + ++ if (try_decrypt) { ++ const char* gpg_path = notmuch_config_get_crypto_gpg_path (config); ++ status = notmuch_database_set_gpg_path(notmuch, gpg_path); ++ if (status) ++ fprintf (stderr, "Warning: failed to set database gpg_path to '%s' (%s)\n", ++ gpg_path ? gpg_path : "(NULL)", ++ notmuch_status_to_string (status)); ++ } ++ ++ + /* Index the message. */ +- status = add_file (notmuch, newpath, tag_ops, synchronize_flags, keep); ++ status = add_file (notmuch, newpath, tag_ops, synchronize_flags, keep, try_decrypt); + + /* Commit changes. */ + close_status = notmuch_database_destroy (notmuch); +-- +2.6.2 +