[PATCH v3] test: add_gnupg_home should have ultimate trust on "its own" key

2019-04-24 Thread Daniel Kahn Gillmor
The typical use case for gpg is that if you control a secret key, you
mark it with "ultimate" ownertrust.

This bizarrely opaque --import-ownertrust mechanism is GnuPG's
standard mechanism to set up ultimate ownertrust (the ":6" means
"ultimate", for whatever reason).
---
 test/test-lib.sh | 1 +
 1 file changed, 1 insertion(+)

This differs from v2 in that it adds the --quiet flag, so that the
tests don't have noisy output like "gpg: inserting ownertrust of 6"


diff --git a/test/test-lib.sh b/test/test-lib.sh
index 70d7dcfe..db3ffd8d 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -120,6 +120,7 @@ add_gnupg_home ()
 
 # Change this if we ship a new test key
 FINGERPRINT="5AEAB11F5E33DCE875DDB75B6D92612D94E46381"
+printf '%s:6\n' "$FINGERPRINT" | gpg --quiet --import-ownertrust
 }
 
 # Each test should start with something like this, after copyright notices:
-- 
2.20.1

___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


[PATCH v2] test: add_gnupg_home should have ultimate trust on "its own" key

2019-04-24 Thread Daniel Kahn Gillmor
The typical use case for gpg is that if you control a secret key, you
mark it with "ultimate" ownertrust.

This bizarrely opaque --import-ownertrust mechanism is GnuPG's
standard mechanism to set up ultimate ownertrust (the ":6" means
"ultimate", for whatever reason).
---
 test/test-lib.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/test-lib.sh b/test/test-lib.sh
index 70d7dcfe..89f84bbe 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -120,6 +120,7 @@ add_gnupg_home ()
 
 # Change this if we ship a new test key
 FINGERPRINT="5AEAB11F5E33DCE875DDB75B6D92612D94E46381"
+printf '%s:6\n' "$FINGERPRINT" | gpg --import-ownertrust
 }
 
 # Each test should start with something like this, after copyright notices:
-- 
2.20.1

___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] test: add_gnupg_home should have ultimate trust on "its own" key

2019-04-24 Thread Daniel Kahn Gillmor
On Wed 2019-04-24 18:06:44 -0400, Daniel Kahn Gillmor wrote:
> The typical use case for gpg is that if you control a secret key, you
> mark it with "ultimate" ownertrust.
>
> This bizarrely opaque --import-ownertrust mechanism is GnuPG's
> standard mechanism to set up ultimate ownertrust (the ":6" means
> "ultimate", for whatever reason).
> ---
>  test/test-lib.sh | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/test/test-lib.sh b/test/test-lib.sh
> index 58909ee7..6e383c85 100644
> --- a/test/test-lib.sh
> +++ b/test/test-lib.sh
> @@ -120,6 +120,7 @@ add_gnupg_home ()
>  
>  # Change this if we ship a new test key
>  FINGERPRINT="5AEAB11F5E33DCE875DDB75B6D92612D94E46381"
> +printf '%s:6\n' "$FINGERPRINT" | gpg --import-trustdb

sigh.  this should of course be "--import-ownertrust", not
"--import-trustdb".  i'll send a fixed patch shortly.  Sorry for the
noise.

   --dkg


signature.asc
Description: PGP signature
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


[PATCH] test: add_gnupg_home should have ultimate trust on "its own" key

2019-04-24 Thread Daniel Kahn Gillmor
The typical use case for gpg is that if you control a secret key, you
mark it with "ultimate" ownertrust.

This bizarrely opaque --import-ownertrust mechanism is GnuPG's
standard mechanism to set up ultimate ownertrust (the ":6" means
"ultimate", for whatever reason).
---
 test/test-lib.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/test-lib.sh b/test/test-lib.sh
index 58909ee7..6e383c85 100644
--- a/test/test-lib.sh
+++ b/test/test-lib.sh
@@ -120,6 +120,7 @@ add_gnupg_home ()
 
 # Change this if we ship a new test key
 FINGERPRINT="5AEAB11F5E33DCE875DDB75B6D92612D94E46381"
+printf '%s:6\n' "$FINGERPRINT" | gpg --import-trustdb
 }
 
 # Each test should start with something like this, after copyright notices:
-- 
2.20.1

___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Easing access to the cryptographic envelope

2019-04-24 Thread Daniel Kahn Gillmor
E-mail structures are potentially arbitrarily complicated.
Cryptographic protection standards like S/MIME and OpenPGP or PGP/MIME
are often applicable to some elements of some messages.

Last year's "E-Fail" attacks made it clear that trying to provide
normal users with cryptographic protections on piecemeal parts of an
e-mail message is a recipe for disaster, both from an implementation
perspective and a user experience perspective.

I've argued in more detail at [0] about the need to treat
cryptographic protections at the message level, rather than at the
subpart level.

[0] https://dkg.fifthhorseman.net/blog/e-mail-cryptography.html

This series makes "notmuch show" track and emit message-wide
cryptographic state, providing an interface that simple clients that
use "notmuch show" can rely on for their UI and UX.

It doesn't yet apply this layer to the emacs interface, because at the
moment many users of the emacs interface are nerds who are as likely
to understand the intricacies of MIME structure as anyone, and for the
moment, just augmenting the notmuch show schemata in a sensible way is
enough of a chunk to bite off.

 (though i'd be happy to review and support the use of this
 per-message cryptographic state in notmuch-emacs if/when this lands!)

I'd appreciate any review and feedback!

Regards,

--dkg



___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


[PATCH 3/4] mime-node: track whole-message crypto state while walking the tree

2019-04-24 Thread Daniel Kahn Gillmor
Deliberately populate the message's cryptographic status while walking
the MIME tree from the CLI.

Note that the additional numchild argument added to _mime_node_create
is a passthrough needed to be able to adequately populate the crypto
state object.
---
 mime-node.c | 24 +---
 1 file changed, 21 insertions(+), 3 deletions(-)

diff --git a/mime-node.c b/mime-node.c
index 272d23fb..6a6d3c8d 100644
--- a/mime-node.c
+++ b/mime-node.c
@@ -135,6 +135,8 @@ mime_node_open (const void *ctx, notmuch_message_t *message,
goto DONE;
 }
 
+mctx->msg_crypto = _notmuch_message_crypto_new (mctx);
+
 mctx->crypto = crypto;
 
 /* Create the root node */
@@ -181,6 +183,7 @@ node_verify (mime_node_t *node, GMimeObject *part,
 g_mime_3_unused(GMimeCryptoContext *cryptoctx))
 {
 GError *err = NULL;
+notmuch_status_t status;
 
 node->verify_attempted = true;
 node->sig_list = g_mime_multipart_signed_verify
@@ -194,6 +197,10 @@ node_verify (mime_node_t *node, GMimeObject *part,
 
 if (err)
g_error_free (err);
+
+status = _notmuch_message_crypto_potential_sig_list(node->ctx->msg_crypto, 
node->sig_list);
+if (status) /* this is a warning, not an error */
+   fprintf (stderr, "Warning: failed to note signature status: %s.\n", 
notmuch_status_to_string (status));
 }
 
 /* Decrypt and optionally verify an encrypted mime node (GMime 2.6) */
@@ -203,6 +210,7 @@ node_decrypt_and_verify (mime_node_t *node, GMimeObject 
*part,
 {
 GError *err = NULL;
 GMimeDecryptResult *decrypt_result = NULL;
+notmuch_status_t status;
 GMimeMultipartEncrypted *encrypteddata = GMIME_MULTIPART_ENCRYPTED (part);
 notmuch_message_t *message = NULL;
 
@@ -225,6 +233,9 @@ node_decrypt_and_verify (mime_node_t *node, GMimeObject 
*part,
 }
 
 node->decrypt_success = true;
+status = _notmuch_message_crypto_successful_decryption 
(node->ctx->msg_crypto);
+if (status) /* this is a warning, not an error */
+   fprintf (stderr, "Warning: failed to note decryption status: %s.\n", 
notmuch_status_to_string (status));
 
 if (decrypt_result) {
/* This may be NULL if the part is not signed. */
@@ -233,6 +244,9 @@ node_decrypt_and_verify (mime_node_t *node, GMimeObject 
*part,
node->verify_attempted = true;
g_object_ref (node->sig_list);
set_signature_list_destructor (node);
+   status = 
_notmuch_message_crypto_potential_sig_list(node->ctx->msg_crypto, 
node->sig_list);
+   if (status) /* this is a warning, not an error */
+   fprintf (stderr, "Warning: failed to note signature status: 
%s.\n", notmuch_status_to_string (status));
}
 
 #if HAVE_GMIME_SESSION_KEYS
@@ -255,10 +269,11 @@ node_decrypt_and_verify (mime_node_t *node, GMimeObject 
*part,
 }
 
 static mime_node_t *
-_mime_node_create (mime_node_t *parent, GMimeObject *part)
+_mime_node_create (mime_node_t *parent, GMimeObject *part, int numchild)
 {
 mime_node_t *node = talloc_zero (parent, mime_node_t);
 GMimeCryptoContext *cryptoctx = NULL;
+notmuch_status_t status;
 
 /* Set basic node properties */
 node->part = part;
@@ -296,7 +311,6 @@ _mime_node_create (mime_node_t *parent, GMimeObject *part)
|| (GMIME_IS_MULTIPART_SIGNED (part) && node->ctx->crypto->verify)) {
GMimeContentType *content_type = g_mime_object_get_content_type (part);
const char *protocol = g_mime_content_type_get_parameter (content_type, 
"protocol");
-   notmuch_status_t status;
status = _notmuch_crypto_get_gmime_ctx_for_protocol (node->ctx->crypto,
 protocol, 
);
if (status) /* this is a warning, not an error */
@@ -326,6 +340,10 @@ _mime_node_create (mime_node_t *parent, GMimeObject *part)
} else {
node_verify (node, part, cryptoctx);
}
+} else {
+   status = _notmuch_message_crypto_potential_payload 
(node->ctx->msg_crypto, part, parent ? parent->part : NULL, numchild);
+   if (status)
+   fprintf (stderr, "Warning: failed to record potential crypto 
payload (%s).\n", notmuch_status_to_string (status));
 }
 
 return node;
@@ -353,7 +371,7 @@ mime_node_child (mime_node_t *parent, int child)
INTERNAL_ERROR ("Unexpected GMimeObject type: %s",
g_type_name (G_OBJECT_TYPE (parent->part)));
 }
-node = _mime_node_create (parent, sub);
+node = _mime_node_create (parent, sub, child);
 
 if (child == parent->next_child && parent->next_part_num != -1) {
/* We're traversing in depth-first order.  Record the child's
-- 
2.20.1

___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


[PATCH 1/4] util/crypto: _notmuch_message_crypto: tracks message-wide crypto state

2019-04-24 Thread Daniel Kahn Gillmor
E-mail encryption and signatures reported by notmuch are at the MIME
part level.  This makes sense in the dirty details, but for users we
need to have a per-message conception of the cryptographic state of
the e-mail.  (see
https://dkg.fifthhorseman.net/blog/e-mail-cryptography.html for more
discussion of why this is important).

The object created in this patch is a useful for tracking the
cryptographic state of the underlying message as a whole, based on a
depth-first search of the message's MIME structure.

This object stores a signature list of the message, but we don't
handle it yet.  Further patches in this series will make use of the
signature list.
---
 util/crypto.c | 89 +++
 util/crypto.h | 65 +
 2 files changed, 154 insertions(+)

diff --git a/util/crypto.c b/util/crypto.c
index 9d3b6dad..9512fd67 100644
--- a/util/crypto.c
+++ b/util/crypto.c
@@ -219,3 +219,92 @@ _notmuch_crypto_decrypt (bool *attempted,
 #endif
 return ret;
 }
+
+
+static int
+_notmuch_message_crypto_cleanup (_notmuch_message_crypto_t *msg_crypto)
+{
+if (!msg_crypto)
+   return 0;
+if (msg_crypto->sig_list)
+   g_object_unref (msg_crypto->sig_list);
+return 0;
+}
+
+_notmuch_message_crypto_t *
+_notmuch_message_crypto_new (void *ctx)
+{
+_notmuch_message_crypto_t *ret = talloc_zero (ctx, 
_notmuch_message_crypto_t);
+talloc_set_destructor (ret, _notmuch_message_crypto_cleanup);
+return ret;
+}
+
+
+notmuch_status_t
+_notmuch_message_crypto_potential_sig_list (_notmuch_message_crypto_t 
*msg_crypto, GMimeSignatureList *sigs)
+{
+if (!msg_crypto)
+   return NOTMUCH_STATUS_NULL_POINTER;
+
+/* Signatures that arrive after a payload part during DFS are not
+ * part of the cryptographic envelope: */
+if (msg_crypto->payload_encountered)
+   return NOTMUCH_STATUS_SUCCESS;
+
+if (msg_crypto->sig_list)
+   g_object_unref (msg_crypto->sig_list);
+
+msg_crypto->sig_list = sigs;
+if (sigs)
+   g_object_ref (sigs);
+
+if (msg_crypto->decryption_status == NOTMUCH_MESSAGE_DECRYPTED_FULL)
+   msg_crypto->signature_encrypted = true;
+
+return NOTMUCH_STATUS_SUCCESS;
+}
+
+
+notmuch_status_t
+_notmuch_message_crypto_potential_payload (_notmuch_message_crypto_t 
*msg_crypto, GMimeObject *payload, GMimeObject *parent, int childnum)
+{
+if (!msg_crypto || !payload)
+   return NOTMUCH_STATUS_NULL_POINTER;
+
+/* only fire on the first payload part encountered */
+if (msg_crypto->payload_encountered)
+   return NOTMUCH_STATUS_SUCCESS;
+
+/* the first child of multipart/encrypted that matches the
+ * encryption protocol should be "control information" metadata,
+ * not payload.  So we skip it. (see
+ * https://tools.ietf.org/html/rfc1847#page-8) */
+if (parent && GMIME_IS_MULTIPART_ENCRYPTED (parent) && childnum == 
GMIME_MULTIPART_ENCRYPTED_VERSION) {
+   const char *enc_type = g_mime_object_get_content_type_parameter 
(parent, "protocol");
+   GMimeContentType *ct = g_mime_object_get_content_type (payload);
+   if (ct && enc_type) {
+   const char *part_type = g_mime_content_type_to_string (ct);
+   if (part_type && strcmp (part_type, enc_type) == 0)
+   return NOTMUCH_STATUS_SUCCESS;
+   }
+}
+
+msg_crypto->payload_encountered = true;
+
+return NOTMUCH_STATUS_SUCCESS;
+}
+
+
+notmuch_status_t
+_notmuch_message_crypto_successful_decryption (_notmuch_message_crypto_t 
*msg_crypto)
+{
+if (!msg_crypto)
+   return NOTMUCH_STATUS_NULL_POINTER;
+
+if (!msg_crypto->payload_encountered)
+   msg_crypto->decryption_status = NOTMUCH_MESSAGE_DECRYPTED_FULL;
+else if (msg_crypto->decryption_status == NOTMUCH_MESSAGE_DECRYPTED_NONE)
+   msg_crypto->decryption_status = NOTMUCH_MESSAGE_DECRYPTED_PARTIAL;
+
+return NOTMUCH_STATUS_SUCCESS;
+}
diff --git a/util/crypto.h b/util/crypto.h
index 1a90f0e0..c09c136e 100644
--- a/util/crypto.h
+++ b/util/crypto.h
@@ -38,6 +38,71 @@ _notmuch_crypto_get_gmime_ctx_for_protocol 
(_notmuch_crypto_t *crypto,
 void
 _notmuch_crypto_cleanup (_notmuch_crypto_t *crypto);
 
+/* The user probably wants to know if the entire message was in the
+ * clear.  When replying, the MUA probably wants to know whether there
+ * was any part decrypted in the message.  And when displaying to the
+ * user, we probably only want to display "encrypted message" if the
+ * entire message was covered by encryption. */
+typedef enum {
+NOTMUCH_MESSAGE_DECRYPTED_NONE = 0,
+NOTMUCH_MESSAGE_DECRYPTED_PARTIAL,
+NOTMUCH_MESSAGE_DECRYPTED_FULL,
+} _notmuch_message_decryption_status_t;
+
+/* description of the cryptographic state of a given message overall;
+ * for use by simple user agents.
+ */
+typedef struct _notmuch_message_crypto {
+/* encryption status: partial, full, none */
+_notmuch_message_decryption_status_t decryption_status;
+/* 

[PATCH 4/4] cli/show: emit new whole-message crypto status output

2019-04-24 Thread Daniel Kahn Gillmor
This allows MUAs that don't want to think about per-mime-part
cryptographic status to have a simple high-level overview of the
message's cryptographic state.

Sensibly structured encrypted and/or signed messages will work fine
with this.  The only requirement for the simplest encryption + signing
is that the message have all of its encryption and signing protection
(the "cryptographic envelope") in a contiguous set of MIME layers at
the very outside of the message itself.

This is because messages with some subparts signed or encrypted, but
with other subparts with no cryptographic protection is very difficult
to reason about, and even harder for the user to make sense of or work
with.

For further characterization of the Cryptographic Envelope and some of
the usability tradeoffs, see here:

   
https://dkg.fifthhorseman.net/blog/e-mail-cryptography.html#cryptographic-envelope
---
 devel/schemata  | 18 ++
 notmuch-show.c  | 29 +
 test/T350-crypto.sh | 19 +++
 test/T355-smime.sh  |  5 +++--
 4 files changed, 65 insertions(+), 6 deletions(-)

diff --git a/devel/schemata b/devel/schemata
index 42b1bcf3..33633ab3 100644
--- a/devel/schemata
+++ b/devel/schemata
@@ -33,6 +33,8 @@ v3
 v4
 - replace signature error integer bitmask with a set of flags for
   individual errors.
+- (notmuch 0.29) added message.crypto to identify overall message
+  cryptographic state
 
 Common non-terminals
 
@@ -73,9 +75,25 @@ message = {
 tags:   [string*],
 
 headers:headers,
+crypto?:crypto,   # omitted if crypto disabled, or if no part was 
signed or encrypted.
 body?:  [part]# omitted if --body=false
 }
 
+# when showing the message, was any or all of it decrypted?
+msgdecstatus: "full"|"partial"
+
+# The overall cryptographic state of the message as a whole:
+crypto = {
+signed?:{
+  status:  sigstatus,
+  # was the set of signatures described under encrypted cover?
+  encrypted:   bool,
+},
+decrypted?: {
+  status: msgdecstatus,
+}
+}
+
 # A MIME part (format_part_sprinter)
 part = {
 id: int|string, # part id (currently DFS part number)
diff --git a/notmuch-show.c b/notmuch-show.c
index 88699e90..575b1654 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -648,6 +648,35 @@ format_part_sprinter (const void *ctx, sprinter_t *sp, 
mime_node_t *node,
format_part_sprinter (ctx, sp, mime_node_child (node, 0), true, 
include_html);
sp->end (sp);
}
+
+   if (notmuch_format_version >= 4) {
+   const _notmuch_message_crypto_t *msg_crypto = 
mime_node_get_message_crypto_status (node);
+   if (msg_crypto->sig_list ||
+   msg_crypto->decryption_status != 
NOTMUCH_MESSAGE_DECRYPTED_NONE) {
+   sp->map_key (sp, "crypto");
+   sp->begin_map (sp);
+   if (msg_crypto->sig_list) {
+   sp->map_key (sp, "signed");
+   sp->begin_map (sp);
+   sp->map_key (sp, "status");
+   format_part_sigstatus_sprinter (sp, msg_crypto->sig_list);
+   if (msg_crypto->signature_encrypted) {
+   sp->map_key (sp, "encrypted");
+   sp->boolean (sp, msg_crypto->signature_encrypted);
+   }
+   sp->end (sp);
+   }
+   if (msg_crypto->decryption_status != 
NOTMUCH_MESSAGE_DECRYPTED_NONE) {
+   sp->map_key (sp, "decrypted");
+   sp->begin_map (sp);
+   sp->map_key (sp, "status");
+   sp->string (sp, msg_crypto->decryption_status == 
NOTMUCH_MESSAGE_DECRYPTED_FULL ? "full" : "partial");
+   sp->end (sp);
+   }
+   sp->end (sp);
+   }
+   }
+
sp->end (sp);
return;
 }
diff --git a/test/T350-crypto.sh b/test/T350-crypto.sh
index 2f793e96..a6d8bebd 100755
--- a/test/T350-crypto.sh
+++ b/test/T350-crypto.sh
@@ -25,7 +25,7 @@ test_expect_equal "$output" "thread:XXX   2000-01-01 [1/1] 
Notmuch Test Suite; t
 test_begin_subtest "signature verification"
 output=$(notmuch show --format=json --verify subject:"test signed message 001" 
\
 | notmuch_json_show_sanitize \
-| sed -e 's|"created": [1234567890]*|"created": 946728000|')
+| sed -e 's|"created": [1234567890]*|"created": 946728000|g')
 expected='[[[{"id": "X",
  "match": true,
  "excluded": false,
@@ -33,6 +33,7 @@ expected='[[[{"id": "X",
  "timestamp": 946728000,
  "date_relative": "2000-01-01",
  "tags": ["inbox","signed"],
+ "crypto": {"signed": {"status": [{ "status": "good", "created": 946728000, 
"fingerprint": "'$FINGERPRINT'"}]}},
  "headers": {"Subject": "test signed message 001",
  "From": "Notmuch Test Suite ",
  "To": 

[PATCH 2/4] cli: expose message-wide crypto status from mime-node

2019-04-24 Thread Daniel Kahn Gillmor
The mime node context (a per-message context) gains a cryptographic
status object, and the mime_node_t object itself can return a view on
that status to an interested party.

The status is not yet populated, and for now we can keep that view
read-only, so that it can only be populated/modified during MIME tree
traversal.
---
 mime-node.c  | 7 +++
 notmuch-client.h | 3 +++
 2 files changed, 10 insertions(+)

diff --git a/mime-node.c b/mime-node.c
index 1bfb479b..272d23fb 100644
--- a/mime-node.c
+++ b/mime-node.c
@@ -31,6 +31,7 @@ typedef struct mime_node_context {
 GMimeStream *stream;
 GMimeParser *parser;
 GMimeMessage *mime_message;
+_notmuch_message_crypto_t *msg_crypto;
 
 /* Context provided by the caller. */
 _notmuch_crypto_t *crypto;
@@ -54,6 +55,12 @@ _mime_node_context_free (mime_node_context_t *res)
 return 0;
 }
 
+const _notmuch_message_crypto_t*
+mime_node_get_message_crypto_status (mime_node_t *node)
+{
+return node->ctx->msg_crypto;
+}
+
 notmuch_status_t
 mime_node_open (const void *ctx, notmuch_message_t *message,
_notmuch_crypto_t *crypto, mime_node_t **root_out)
diff --git a/notmuch-client.h b/notmuch-client.h
index 6c84ecc0..3497e5b0 100644
--- a/notmuch-client.h
+++ b/notmuch-client.h
@@ -448,6 +448,9 @@ mime_node_child (mime_node_t *parent, int child);
 mime_node_t *
 mime_node_seek_dfs (mime_node_t *node, int n);
 
+const _notmuch_message_crypto_t*
+mime_node_get_message_crypto_status (mime_node_t *node);
+
 typedef enum dump_formats {
 DUMP_FORMAT_AUTO,
 DUMP_FORMAT_BATCH_TAG,
-- 
2.20.1

___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] crypto: Avoid pretending to verify signatures on unsigned encrypted mail

2019-04-24 Thread Daniel Kahn Gillmor
On Sat 2019-04-20 13:02:57 -0400, Daniel Kahn Gillmor wrote:
> Unsigned encrypted mail shows up with a weird empty signature list.
> If we successfully decrypted and there was no signature in it, we
> should just not show a sigstatus at all.

Just a ping on this -- i don't think it should be particularly
controversial, and the tests all pass!

--dkg
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] tests: move FINGERPRINT definition to add_gnupg_home

2019-04-24 Thread David Bremner
Daniel Kahn Gillmor  writes:

> If a test has added a GnuPG homedir, it may well want to know the
> fingerprint.  This saves us from having to redefine this magic string
> in multiple places when more tests evenutally use the GnuPG homedir.

pushed, with typo in commit message fixed
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] python: support relative path in default database

2019-04-24 Thread David Bremner
Doan Tran Cong Danh  writes:

> From notmuch 0.28, notmuch support relative database path in
> notmuch-config(1), but python binding haven't taught this yet.
>
> afew denied to work with a perfectly fine notmuch-config due to this.

pushed to  master

d
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] emacs: Add missing type and group to defcustom variable

2019-04-24 Thread David Bremner
Örjan Ekeberg  writes:

> Added the type 'regexp and group 'notmuch-send as properties to the
> customizable variable notmuch-mua-attachment-regexp.

pushed,

d
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH 3/4] doc: use stamp file for html docs

2019-04-24 Thread David Bremner
Daniel Kahn Gillmor  writes:

>>  
>> -sphinx-texinfo: .texi.stamp
>> +sphinx-texinfo: $(DOCBUILDDIR)/.texi.stamp
>
> I think this final change (to the sphinx-texinfo target) belongs in the
> previous patchset.
>
> Otherwise, this series looks good to me, using your followup two-part
> replacement for the obsolete 1/4 patch.
>

thanks for catching that. I've pushed the amended series.
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch


Re: [PATCH] emacs: hint that notmuch-mua-attachment-regexp is a regular expression

2019-04-24 Thread Daniel Kahn Gillmor
On Mon 2019-04-22 11:33:34 +0200, Örjan Ekeberg wrote:
> This addresses the same issue, and therefore overlaps with the patch
> I submitted a week ago.
> (id:20190415133519.4532-1-ekeb...@kth.se)

sorry, i'd missed your earlier patch!  i agree that your patch is
obviously better than mine, thanks for pointing it out again.

I've marked my patch with notmuch::obsolete, and marked yours with
notmuch::trivial and notmuch::patch, as i don't think it needs any more
review, and should be merged.

--dkg


signature.asc
Description: PGP signature
___
notmuch mailing list
notmuch@notmuchmail.org
https://notmuchmail.org/mailman/listinfo/notmuch