[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / c0 / 3a4e229919119486bb36995f524c1f637096e0
1 Return-Path: <sojkam1@fel.cvut.cz>\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 8968D431FDA\r
6         for <notmuch@notmuchmail.org>; Thu, 28 Jan 2010 07:25:43 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.959\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.959 tagged_above=-999 required=5\r
12         tests=[AWL=-0.774, BAYES_40=-0.185] autolearn=ham\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 Mefzx9IzUb1B for <notmuch@notmuchmail.org>;\r
16         Thu, 28 Jan 2010 07:25:42 -0800 (PST)\r
17 Received: from mout.perfora.net (mout.perfora.net [74.208.4.194])\r
18         by olra.theworths.org (Postfix) with ESMTP id C79E8431FD5\r
19         for <notmuch@notmuchmail.org>; Thu, 28 Jan 2010 07:25:42 -0800 (PST)\r
20 Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36])\r
21         by mx.perfora.net (node=mxus2) with ESMTP (Nemesis)\r
22         id 0MMDEz-1Nhwtz0chR-008449 for notmuch@notmuchmail.org;\r
23         Thu, 28 Jan 2010 10:25:38 -0500\r
24 Received: from localhost (unknown [192.168.200.4])\r
25         by max.feld.cvut.cz (Postfix) with ESMTP id AB71819F33CF;\r
26         Thu, 28 Jan 2010 16:25:36 +0100 (CET)\r
27 X-Virus-Scanned: IMAP AMAVIS\r
28 Received: from max.feld.cvut.cz ([192.168.200.1])\r
29         by localhost (styx.feld.cvut.cz [192.168.200.4]) (amavisd-new,\r
30         port 10044)\r
31         with ESMTP id qcc9MaVhp9YE; Thu, 28 Jan 2010 16:25:32 +0100 (CET)\r
32 Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34])\r
33         by max.feld.cvut.cz (Postfix) with ESMTP id 8E5CC19F338D;\r
34         Thu, 28 Jan 2010 16:25:32 +0100 (CET)\r
35 Received: from localhost.localdomain (k335-30.felk.cvut.cz [147.32.86.30])\r
36         (Authenticated sender: sojkam1)\r
37         by imap.feld.cvut.cz (Postfix) with ESMTPSA id 036C3FA003;\r
38         Thu, 28 Jan 2010 16:25:32 +0100 (CET)\r
39 From: Michal Sojka <sojkam1@fel.cvut.cz>\r
40 To: notmuch@notmuchmail.org\r
41 Date: Thu, 28 Jan 2010 16:25:16 +0100\r
42 Message-Id: <1264692317-9175-1-git-send-email-sojkam1@fel.cvut.cz>\r
43 X-Mailer: git-send-email 1.6.6\r
44 In-Reply-To: <201001281624.01577.sojkam1@fel.cvut.cz>\r
45 References: <201001281624.01577.sojkam1@fel.cvut.cz>\r
46 MIME-Version: 1.0\r
47 Content-Type: text/plain; charset=UTF-8\r
48 Content-Transfer-Encoding: 8bit\r
49 Subject: [notmuch] [PATCH 1/2] Skip German "aw:" prefix in subjects\r
50 X-BeenThere: notmuch@notmuchmail.org\r
51 X-Mailman-Version: 2.1.13\r
52 Precedence: list\r
53 List-Id: "Use and development of the notmuch mail system."\r
54         <notmuch.notmuchmail.org>\r
55 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
56         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
57 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
58 List-Post: <mailto:notmuch@notmuchmail.org>\r
59 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
60 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
61         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
62 X-List-Received-Date: Thu, 28 Jan 2010 15:25:43 -0000\r
63 \r
64 This was originally present in Andreas Klöckner's patch.\r
65 ---\r
66  lib/index.cc |    2 ++\r
67  1 files changed, 2 insertions(+), 0 deletions(-)\r
68 \r
69 diff --git a/lib/index.cc b/lib/index.cc\r
70 index 7e2da08..eb97f91 100644\r
71 --- a/lib/index.cc\r
72 +++ b/lib/index.cc\r
73 @@ -116,6 +116,8 @@ skip_re_in_subject (const char *subject)\r
74             s++;\r
75         if (strncasecmp (s, "re:", 3) == 0)\r
76             s += 3;\r
77 +        else if (strncasecmp (s, "aw:", 3) == 0)\r
78 +           s += 3;\r
79         else\r
80             break;\r
81      }\r
82 -- \r
83 1.6.6\r
84 \r