[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 96 / cbafd3a8b5ecdd9a5b06e0b782b77ef6a3eba1
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 arlo.cworth.org (Postfix) with ESMTP id 65B266DE10F8\r
6  for <notmuch@notmuchmail.org>; Thu, 21 Jan 2016 00:34:58 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -1.873\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.873 tagged_above=-999 required=5 tests=[AWL=0.977,\r
12   RCVD_IN_DNSWL_MED=-2.3, RP_MATCHES_RCVD=-0.55] 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 fo7qWv_EH-Vo for <notmuch@notmuchmail.org>;\r
16  Thu, 21 Jan 2016 00:34:56 -0800 (PST)\r
17 Received: from max.feld.cvut.cz (max.feld.cvut.cz [147.32.192.36])\r
18  by arlo.cworth.org (Postfix) with ESMTP id D56816DE1016\r
19  for <notmuch@notmuchmail.org>; Thu, 21 Jan 2016 00:34:55 -0800 (PST)\r
20 Received: from localhost (unknown [192.168.200.7])\r
21  by max.feld.cvut.cz (Postfix) with ESMTP id 1225C5CD093;\r
22  Thu, 21 Jan 2016 09:34:53 +0100 (CET)\r
23 X-Virus-Scanned: IMAP STYX AMAVIS\r
24 Received: from max.feld.cvut.cz ([192.168.200.1])\r
25  by localhost (styx.feld.cvut.cz [192.168.200.7]) (amavisd-new, port 10044)\r
26  with ESMTP id W8KEsO5W_vzk; Thu, 21 Jan 2016 09:34:51 +0100 (CET)\r
27 Received: from imap.feld.cvut.cz (imap.feld.cvut.cz [147.32.192.34])\r
28  by max.feld.cvut.cz (Postfix) with ESMTP id 417185CD099;\r
29  Thu, 21 Jan 2016 09:34:50 +0100 (CET)\r
30 Received: from wsh by steelpick.2x.cz with local (Exim 4.86)\r
31  (envelope-from <sojkam1@fel.cvut.cz>)\r
32  id 1aMAhb-0004WY-Va; Thu, 21 Jan 2016 09:34:47 +0100\r
33 From: Michal Sojka <sojkam1@fel.cvut.cz>\r
34 To: sfischme@uwaterloo.ca, Notmuch Mail <notmuch@notmuchmail.org>\r
35 Subject: Re: Mail merge with notmuch\r
36 In-Reply-To: <87twmdqkwg.fsf@uwaterloo.ca>\r
37 References: <87twmdqkwg.fsf@uwaterloo.ca>\r
38 User-Agent: Notmuch/0.21+30~g55c056a (http://notmuchmail.org) Emacs/24.5.1\r
39  (x86_64-pc-linux-gnu)\r
40 Date: Thu, 21 Jan 2016 09:34:47 +0100\r
41 Message-ID: <87vb6nmiu0.fsf@steelpick.2x.cz>\r
42 MIME-Version: 1.0\r
43 Content-Type: text/plain\r
44 X-BeenThere: notmuch@notmuchmail.org\r
45 X-Mailman-Version: 2.1.20\r
46 Precedence: list\r
47 List-Id: "Use and development of the notmuch mail system."\r
48  <notmuch.notmuchmail.org>\r
49 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
50  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
51 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
52 List-Post: <mailto:notmuch@notmuchmail.org>\r
53 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
54 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
55  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
56 X-List-Received-Date: Thu, 21 Jan 2016 08:34:58 -0000\r
57 \r
58 Hi Sebastian,\r
59 \r
60 On Sat, Jan 16 2016, Sebastian Fischmeister wrote:\r
61 > Hi,\r
62 >\r
63 > Is there a straightforward way to for mail merge with notmuch? I need to\r
64 > send emails with only minor modifications to a number of people. If I\r
65 > could send mails from the command line, then that would be perfect.\r
66 >\r
67 > Any ideas?\r
68 \r
69 You can do this easily without notmuch. You need a locally configured\r
70 MTA such as sendmail or exim (which provides sendmail alias) and then\r
71 run something like:\r
72 \r
73     cat people | while read EMAIL NAME; do\r
74       sendmail -t <<EOF\r
75     From: Me <me@xample.com>\r
76     To: $EMAIL\r
77     Subject: Foobar\r
78      \r
79     Hello $NAME!\r
80     ...\r
81     EOF\r
82     done\r
83 \r
84 BR\r
85 -Michal\r