Re: [PATCH 0/4] Allow specifying alternate names for addresses in other_email
[notmuch-archives.git] / 8e / c5c65137c013734b05d8f94fe39a1ea0e5e5f2
1 Return-Path: <tomi.ollila@iki.fi>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5  by arlo.cworth.org (Postfix) with ESMTP id 559686DE0BF6\r
6  for <notmuch@notmuchmail.org>; Wed, 10 Feb 2016 23:16:50 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0.642\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0.642 tagged_above=-999 required=5 tests=[AWL=-0.010,\r
12   SPF_NEUTRAL=0.652] autolearn=disabled\r
13 Received: from arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id SxnurhfVVeIB for <notmuch@notmuchmail.org>;\r
16  Wed, 10 Feb 2016 23:16:48 -0800 (PST)\r
17 Received: from guru.guru-group.fi (guru.guru-group.fi [46.183.73.34])\r
18  by arlo.cworth.org (Postfix) with ESMTP id EF79F6DE0B36\r
19  for <notmuch@notmuchmail.org>; Wed, 10 Feb 2016 23:16:47 -0800 (PST)\r
20 Received: from guru.guru-group.fi (localhost [IPv6:::1])\r
21  by guru.guru-group.fi (Postfix) with ESMTP id 16ACE10007F;\r
22  Thu, 11 Feb 2016 09:17:00 +0200 (EET)\r
23 From: Tomi Ollila <tomi.ollila@iki.fi>\r
24 To: Daniel Kahn Gillmor <dkg@fifthhorseman.net>,\r
25  David Bremner <david@tethera.net>, Notmuch Mail <notmuch@notmuchmail.org>\r
26 Subject: Re: [PATCH v3 06/16] Prefer gpg2 in the test suite if available\r
27 In-Reply-To: <874mdgo6za.fsf@alice.fifthhorseman.net>\r
28 References: <1454272801-23623-1-git-send-email-dkg@fifthhorseman.net>\r
29  <1454272801-23623-7-git-send-email-dkg@fifthhorseman.net>\r
30  <87lh6svl0b.fsf@maritornes.cs.unb.ca>\r
31  <874mdgo6za.fsf@alice.fifthhorseman.net>\r
32 User-Agent: Notmuch/0.21+32~g73439f8 (http://notmuchmail.org) Emacs/24.3.1\r
33  (x86_64-unknown-linux-gnu)\r
34 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
35  $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
36  !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
37 Date: Thu, 11 Feb 2016 09:16:59 +0200\r
38 Message-ID: <m237szk978.fsf@guru.guru-group.fi>\r
39 MIME-Version: 1.0\r
40 Content-Type: text/plain\r
41 X-BeenThere: notmuch@notmuchmail.org\r
42 X-Mailman-Version: 2.1.20\r
43 Precedence: list\r
44 List-Id: "Use and development of the notmuch mail system."\r
45  <notmuch.notmuchmail.org>\r
46 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
47  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
48 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
49 List-Post: <mailto:notmuch@notmuchmail.org>\r
50 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
51 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
52  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
53 X-List-Received-Date: Thu, 11 Feb 2016 07:16:50 -0000\r
54 \r
55 On Wed, Feb 10 2016, Daniel Kahn Gillmor <dkg@fifthhorseman.net> wrote:\r
56 \r
57 > On Wed 2016-02-10 06:54:12 -0500, David Bremner wrote:\r
58 >> Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:\r
59 >>\r
60 >>>  \r
61 >>> +# choose the preferred GnuPG binary:\r
62 >>> +if command -v gpg2 > /dev/null; then\r
63 >>> +    GPG=gpg2\r
64 >>> +else\r
65 >>> +    GPG=gpg\r
66 >>> +fi\r
67 >>\r
68 >> It feels like this should maybe be in configure, to centralize the choice\r
69 >> of GPG default. At least, that would be consistent with python / python2\r
70 >\r
71 > I'm not sure what to do here.  Ultimately, i don't want there to be a\r
72 > choice because i plan on having /usr/bin/gpg provided by gpg2, so this\r
73 > will all be moot.\r
74 \r
75 Code searches through PATH, so IMO this test could do the same (with\r
76 reasonable similarity (like above)). This could add check whether GPG\r
77 is already defined that definition is used...\r
78 \r
79 \r
80 >\r
81 > So i'm not inclined to spend much more time/engineering effort on it,\r
82 > but if someone wants to propose moving these choices into configure, i'd\r
83 > be willing to review.\r
84 >\r
85 >    --dkg\r