Re: [PATCH 0/4] Allow specifying alternate names for addresses in other_email
[notmuch-archives.git] / fe / 12ff2a8b13244908ed370a65626c89b33ff21f
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 olra.theworths.org (Postfix) with ESMTP id 0AFC2431FAF\r
6         for <notmuch@notmuchmail.org>; Sat, 24 Mar 2012 03:06:16 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
12         autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id cV86dYXVGGYg for <notmuch@notmuchmail.org>;\r
16         Sat, 24 Mar 2012 03:06:15 -0700 (PDT)\r
17 Received: from guru.guru-group.fi (guru-group.fi [87.108.86.66])\r
18         by olra.theworths.org (Postfix) with ESMTP id 1A786431FAE\r
19         for <notmuch@notmuchmail.org>; Sat, 24 Mar 2012 03:06:15 -0700 (PDT)\r
20 Received: by guru.guru-group.fi (Postfix, from userid 501)\r
21         id 55EB668055; Sat, 24 Mar 2012 12:06:06 +0200 (EET)\r
22 From: Tomi Ollila <tomi.ollila@iki.fi>\r
23 To: Austin Clements <amdragon@MIT.EDU>, notmuch@notmuchmail.org\r
24 Subject: Re: [PATCH 0/3] Rewrite default reply format\r
25 In-Reply-To: <1332473647-9133-1-git-send-email-amdragon@mit.edu>\r
26 References: <1332473647-9133-1-git-send-email-amdragon@mit.edu>User-Agent:\r
27  Notmuch/0.12+71~gdacf76b       (http://notmuchmail.org) Emacs/23.3.1\r
28  (x86_64-unknown-linux-gnu)\r
29 X-Face: HhBM'cA~<r"^Xv\KRN0P{vn'Y"Kd;zg_y3S[4)KSN~s?O\"QPoL\r
30         $[Xv_BD:i/F$WiEWax}R(MPS`^UaptOGD`*/=@\1lKoVa9tnrg0TW?"r7aRtgk[F\r
31         !)g;OY^,BjTbr)Np:%c_o'jj,Z\r
32 Date: Sat, 24 Mar 2012 12:06:06 +0200\r
33 Message-ID: <m2d382ia9d.fsf@guru.guru-group.fi>\r
34 MIME-Version: 1.0\r
35 Content-Type: text/plain; charset=us-ascii\r
36 X-BeenThere: notmuch@notmuchmail.org\r
37 X-Mailman-Version: 2.1.13\r
38 Precedence: list\r
39 List-Id: "Use and development of the notmuch mail system."\r
40         <notmuch.notmuchmail.org>\r
41 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
43 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
44 List-Post: <mailto:notmuch@notmuchmail.org>\r
45 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
46 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
47         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
48 X-List-Received-Date: Sat, 24 Mar 2012 10:06:16 -0000\r
49 \r
50 Austin Clements <amdragon@MIT.EDU> writes:\r
51 \r
52 > The default reply format is the last bastion of the old message\r
53 > formatter style.  This series converts it to the new self-recursive\r
54 > style.  After this, there will be one last series to rip out the\r
55 > compatibility code and do final cleanup.\r
56 \r
57 Works fine, patches look good... just 2 "spacing" questions:\r
58 \r
59 in id:"1332473647-9133-2-git-send-email-amdragon@mit.edu"\r
60 \r
61 + typedef enum {\r
62 +     NOTMUCH_SHOW_TEXT_PART_REPLY = 1<<0,\r
63 + } notmuch_show_text_part_flags;\r
64 \r
65 Should this be like: NOTMUCH_SHOW_TEXT_PART_REPLY = (1 << 0),\r
66 \r
67 and this\r
68 \r
69 + * If flags&NOTMUCH_SHOW_TEXT_PART_REPLY, this prepends "> " to each\r
70 + * output line.\r
71 + *\r
72 \r
73 like:\r
74 \r
75 + * If flags & NOTMUCH_SHOW_TEXT_PART_REPLY, this prepends "> " to each\r
76 \r
77 \r
78 Tomi\r