]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
emacs: Prefer '[No Subject]' to blank subjects.
[notmuch] / notmuch-reply.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  * Copyright © 2009 Keith Packard
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see http://www.gnu.org/licenses/ .
18  *
19  * Authors: Carl Worth <cworth@cworth.org>
20  *          Keith Packard <keithp@keithp.com>
21  */
22
23 #include "notmuch-client.h"
24 #include "gmime-filter-reply.h"
25 #include "gmime-filter-headers.h"
26
27 static void
28 reply_headers_message_part (GMimeMessage *message);
29
30 static void
31 reply_part_content (GMimeObject *part);
32
33 static const notmuch_show_format_t format_reply = {
34     "", NULL,
35         "", NULL,
36             "", NULL, reply_headers_message_part, ">\n",
37             "",
38                 NULL,
39                 NULL,
40                 NULL,
41                 reply_part_content,
42                 NULL,
43                 "",
44             "",
45         "", "",
46     ""
47 };
48
49 static void
50 show_reply_headers (GMimeMessage *message)
51 {
52     GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
53
54     stream_stdout = g_mime_stream_file_new (stdout);
55     if (stream_stdout) {
56         g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
57         stream_filter = g_mime_stream_filter_new(stream_stdout);
58         if (stream_filter) {
59                 g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
60                                          g_mime_filter_headers_new());
61                 g_mime_object_write_to_stream(GMIME_OBJECT(message), stream_filter);
62                 g_object_unref(stream_filter);
63         }
64         g_object_unref(stream_stdout);
65     }
66 }
67
68 static void
69 reply_headers_message_part (GMimeMessage *message)
70 {
71     InternetAddressList *recipients;
72     const char *recipients_string;
73
74     printf ("> From: %s\n", g_mime_message_get_sender (message));
75     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
76     recipients_string = internet_address_list_to_string (recipients, 0);
77     if (recipients_string)
78         printf ("> To: %s\n",
79                 recipients_string);
80     recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
81     recipients_string = internet_address_list_to_string (recipients, 0);
82     if (recipients_string)
83         printf ("> Cc: %s\n",
84                 recipients_string);
85     printf ("> Subject: %s\n", g_mime_message_get_subject (message));
86     printf ("> Date: %s\n", g_mime_message_get_date_as_string (message));
87 }
88
89
90 static void
91 reply_part_content (GMimeObject *part)
92 {
93     GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
94     GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (part);
95
96     if (g_mime_content_type_is_type (content_type, "multipart", "*") ||
97         g_mime_content_type_is_type (content_type, "message", "rfc822"))
98     {
99         /* Output nothing, since multipart subparts will be handled individually. */
100     }
101     else if (g_mime_content_type_is_type (content_type, "application", "pgp-encrypted") ||
102              g_mime_content_type_is_type (content_type, "application", "pgp-signature"))
103     {
104         /* Ignore PGP/MIME cruft parts */
105     }
106     else if (g_mime_content_type_is_type (content_type, "text", "*") &&
107         !g_mime_content_type_is_type (content_type, "text", "html"))
108     {
109         GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
110         GMimeDataWrapper *wrapper;
111         const char *charset;
112
113         charset = g_mime_object_get_content_type_parameter (part, "charset");
114         stream_stdout = g_mime_stream_file_new (stdout);
115         if (stream_stdout) {
116             g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
117             stream_filter = g_mime_stream_filter_new(stream_stdout);
118             if (charset) {
119                 g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
120                                          g_mime_filter_charset_new(charset, "UTF-8"));
121             }
122         }
123         g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
124                                  g_mime_filter_reply_new(TRUE));
125         wrapper = g_mime_part_get_content_object (GMIME_PART (part));
126         if (wrapper && stream_filter)
127             g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
128         if (stream_filter)
129             g_object_unref(stream_filter);
130         if (stream_stdout)
131             g_object_unref(stream_stdout);
132     }
133     else
134     {
135         if (disposition &&
136             strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
137         {
138             const char *filename = g_mime_part_get_filename (GMIME_PART (part));
139             printf ("Attachment: %s (%s)\n", filename,
140                     g_mime_content_type_to_string (content_type));
141         }
142         else
143         {
144             printf ("Non-text part: %s\n",
145                     g_mime_content_type_to_string (content_type));
146         }
147     }
148 }
149
150 /* Is the given address configured as one of the user's "personal" or
151  * "other" addresses. */
152 static int
153 address_is_users (const char *address, notmuch_config_t *config)
154 {
155     const char *primary;
156     const char **other;
157     size_t i, other_len;
158
159     primary = notmuch_config_get_user_primary_email (config);
160     if (strcasecmp (primary, address) == 0)
161         return 1;
162
163     other = notmuch_config_get_user_other_email (config, &other_len);
164     for (i = 0; i < other_len; i++)
165         if (strcasecmp (other[i], address) == 0)
166             return 1;
167
168     return 0;
169 }
170
171 /* Scan addresses in 'list'.
172  *
173  * If 'message' is non-NULL, then for each address in 'list' that is
174  * not configured as one of the user's addresses in 'config', add that
175  * address to 'message' as an address of 'type'.
176  *
177  * If 'user_from' is non-NULL and *user_from is NULL, *user_from will
178  * be set to the first address encountered in 'list' that is the
179  * user's address.
180  *
181  * Return the number of addresses added to 'message'. (If 'message' is
182  * NULL, the function returns 0 by definition.)
183  */
184 static unsigned int
185 scan_address_list (InternetAddressList *list,
186                    notmuch_config_t *config,
187                    GMimeMessage *message,
188                    GMimeRecipientType type,
189                    const char **user_from)
190 {
191     InternetAddress *address;
192     int i;
193     unsigned int n = 0;
194
195     for (i = 0; i < internet_address_list_length (list); i++) {
196         address = internet_address_list_get_address (list, i);
197         if (INTERNET_ADDRESS_IS_GROUP (address)) {
198             InternetAddressGroup *group;
199             InternetAddressList *group_list;
200
201             group = INTERNET_ADDRESS_GROUP (address);
202             group_list = internet_address_group_get_members (group);
203             if (group_list == NULL)
204                 continue;
205
206             n += scan_address_list (group_list, config, message, type, user_from);
207         } else {
208             InternetAddressMailbox *mailbox;
209             const char *name;
210             const char *addr;
211
212             mailbox = INTERNET_ADDRESS_MAILBOX (address);
213
214             name = internet_address_get_name (address);
215             addr = internet_address_mailbox_get_addr (mailbox);
216
217             if (address_is_users (addr, config)) {
218                 if (user_from && *user_from == NULL)
219                     *user_from = addr;
220             } else if (message) {
221                 g_mime_message_add_recipient (message, type, name, addr);
222                 n++;
223             }
224         }
225     }
226
227     return n;
228 }
229
230 /* Scan addresses in 'recipients'.
231  *
232  * See the documentation of scan_address_list() above. This function
233  * does exactly the same, but converts 'recipients' to an
234  * InternetAddressList first.
235  */
236 static unsigned int
237 scan_address_string (const char *recipients,
238                      notmuch_config_t *config,
239                      GMimeMessage *message,
240                      GMimeRecipientType type,
241                      const char **user_from)
242 {
243     InternetAddressList *list;
244
245     if (recipients == NULL)
246         return 0;
247
248     list = internet_address_list_parse_string (recipients);
249     if (list == NULL)
250         return 0;
251
252     return scan_address_list (list, config, message, type, user_from);
253 }
254
255 /* Does the address in the Reply-To header of 'message' already appear
256  * in either the 'To' or 'Cc' header of the message?
257  */
258 static int
259 reply_to_header_is_redundant (notmuch_message_t *message)
260 {
261     const char *reply_to, *to, *cc, *addr;
262     InternetAddressList *list;
263     InternetAddress *address;
264     InternetAddressMailbox *mailbox;
265
266     reply_to = notmuch_message_get_header (message, "reply-to");
267     if (reply_to == NULL || *reply_to == '\0')
268         return 0;
269
270     list = internet_address_list_parse_string (reply_to);
271
272     if (internet_address_list_length (list) != 1)
273         return 0;
274
275     address = internet_address_list_get_address (list, 0);
276     if (INTERNET_ADDRESS_IS_GROUP (address))
277         return 0;
278
279     mailbox = INTERNET_ADDRESS_MAILBOX (address);
280     addr = internet_address_mailbox_get_addr (mailbox);
281
282     to = notmuch_message_get_header (message, "to");
283     cc = notmuch_message_get_header (message, "cc");
284
285     if ((to && strstr (to, addr) != 0) ||
286         (cc && strstr (cc, addr) != 0))
287     {
288         return 1;
289     }
290
291     return 0;
292 }
293
294 /* Augment the recipients of 'reply' from the "Reply-to:", "From:",
295  * "To:", "Cc:", and "Bcc:" headers of 'message'.
296  *
297  * If 'reply_all' is true, use sender and all recipients, otherwise
298  * scan the headers for the first that contains something other than
299  * the user's addresses and add the recipients from this header
300  * (typically this would be reply-to-sender, but also handles reply to
301  * user's own message in a sensible way).
302  *
303  * If any of the user's addresses were found in these headers, the
304  * first of these returned, otherwise NULL is returned.
305  */
306 static const char *
307 add_recipients_from_message (GMimeMessage *reply,
308                              notmuch_config_t *config,
309                              notmuch_message_t *message,
310                              notmuch_bool_t reply_all)
311 {
312     struct {
313         const char *header;
314         const char *fallback;
315         GMimeRecipientType recipient_type;
316     } reply_to_map[] = {
317         { "reply-to", "from", GMIME_RECIPIENT_TYPE_TO  },
318         { "to",         NULL, GMIME_RECIPIENT_TYPE_TO  },
319         { "cc",         NULL, GMIME_RECIPIENT_TYPE_CC  },
320         { "bcc",        NULL, GMIME_RECIPIENT_TYPE_BCC }
321     };
322     const char *from_addr = NULL;
323     unsigned int i;
324     unsigned int n = 0;
325
326     /* Some mailing lists munge the Reply-To header despite it being A Bad
327      * Thing, see http://www.unicom.com/pw/reply-to-harmful.html
328      *
329      * The munging is easy to detect, because it results in a
330      * redundant reply-to header, (with an address that already exists
331      * in either To or Cc). So in this case, we ignore the Reply-To
332      * field and use the From header. This ensures the original sender
333      * will get the reply even if not subscribed to the list. Note
334      * that the address in the Reply-To header will always appear in
335      * the reply.
336      */
337     if (reply_to_header_is_redundant (message)) {
338         reply_to_map[0].header = "from";
339         reply_to_map[0].fallback = NULL;
340     }
341
342     for (i = 0; i < ARRAY_SIZE (reply_to_map); i++) {
343         const char *recipients;
344
345         recipients = notmuch_message_get_header (message,
346                                                  reply_to_map[i].header);
347         if ((recipients == NULL || recipients[0] == '\0') && reply_to_map[i].fallback)
348             recipients = notmuch_message_get_header (message,
349                                                      reply_to_map[i].fallback);
350
351         n += scan_address_string (recipients, config, reply,
352                                   reply_to_map[i].recipient_type, &from_addr);
353
354         if (!reply_all && n) {
355             /* Stop adding new recipients in reply-to-sender mode if
356              * we have added some recipient(s) above.
357              *
358              * This also handles the case of user replying to his own
359              * message, where reply-to/from is not a recipient. In
360              * this case there may be more than one recipient even if
361              * not replying to all.
362              */
363             reply = NULL;
364
365             /* From address and some recipients are enough, bail out. */
366             if (from_addr)
367                 break;
368         }
369     }
370
371     return from_addr;
372 }
373
374 static const char *
375 guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
376 {
377     const char *received,*primary,*by;
378     const char **other;
379     char *tohdr;
380     char *mta,*ptr,*token;
381     char *domain=NULL;
382     char *tld=NULL;
383     const char *delim=". \t";
384     size_t i,j,other_len;
385
386     const char *to_headers[] = {"Envelope-to", "X-Original-To"};
387
388     primary = notmuch_config_get_user_primary_email (config);
389     other = notmuch_config_get_user_other_email (config, &other_len);
390
391     /* sadly, there is no standard way to find out to which email
392      * address a mail was delivered - what is in the headers depends
393      * on the MTAs used along the way. So we are trying a number of
394      * heuristics which hopefully will answer this question.
395
396      * We only got here if none of the users email addresses are in
397      * the To: or Cc: header. From here we try the following in order:
398      * 1) check for an Envelope-to: header
399      * 2) check for an X-Original-To: header
400      * 3) check for a (for <email@add.res>) clause in Received: headers
401      * 4) check for the domain part of known email addresses in the
402      *    'by' part of Received headers
403      * If none of these work, we give up and return NULL
404      */
405     for (i = 0; i < sizeof(to_headers)/sizeof(*to_headers); i++) {
406         tohdr = xstrdup(notmuch_message_get_header (message, to_headers[i]));
407         if (tohdr && *tohdr) {
408             /* tohdr is potentialy a list of email addresses, so here we
409              * check if one of the email addresses is a substring of tohdr
410              */
411             if (strcasestr(tohdr, primary)) {
412                 free(tohdr);
413                 return primary;
414             }
415             for (j = 0; j < other_len; j++)
416                 if (strcasestr (tohdr, other[j])) {
417                     free(tohdr);
418                     return other[j];
419                 }
420             free(tohdr);
421         }
422     }
423
424     /* We get the concatenated Received: headers and search from the
425      * front (last Received: header added) and try to extract from
426      * them indications to which email address this message was
427      * delivered.
428      * The Received: header is special in our get_header function
429      * and is always concatenated.
430      */
431     received = notmuch_message_get_header (message, "received");
432     if (received == NULL)
433         return NULL;
434
435     /* First we look for a " for <email@add.res>" in the received
436      * header
437      */
438     ptr = strstr (received, " for ");
439     if (ptr) {
440         /* the text following is potentialy a list of email addresses,
441          * so again we check if one of the email addresses is a
442          * substring of ptr
443          */
444         if (strcasestr(ptr, primary)) {
445             return primary;
446         }
447         for (i = 0; i < other_len; i++)
448             if (strcasestr (ptr, other[i])) {
449                 return other[i];
450             }
451     }
452     /* Finally, we parse all the " by MTA ..." headers to guess the
453      * email address that this was originally delivered to.
454      * We extract just the MTA here by removing leading whitespace and
455      * assuming that the MTA name ends at the next whitespace.
456      * We test for *(by+4) to be non-'\0' to make sure there's
457      * something there at all - and then assume that the first
458      * whitespace delimited token that follows is the receiving
459      * system in this step of the receive chain
460      */
461     by = received;
462     while((by = strstr (by, " by ")) != NULL) {
463         by += 4;
464         if (*by == '\0')
465             break;
466         mta = xstrdup (by);
467         token = strtok(mta," \t");
468         if (token == NULL) {
469             free (mta);
470             break;
471         }
472         /* Now extract the last two components of the MTA host name
473          * as domain and tld.
474          */
475         domain = tld = NULL;
476         while ((ptr = strsep (&token, delim)) != NULL) {
477             if (*ptr == '\0')
478                 continue;
479             domain = tld;
480             tld = ptr;
481         }
482
483         if (domain) {
484             /* Recombine domain and tld and look for it among the configured
485              * email addresses.
486              * This time we have a known domain name and nothing else - so
487              * the test is the other way around: we check if this is a
488              * substring of one of the email addresses.
489              */
490             *(tld-1) = '.';
491
492             if (strcasestr(primary, domain)) {
493                 free(mta);
494                 return primary;
495             }
496             for (i = 0; i < other_len; i++)
497                 if (strcasestr (other[i],domain)) {
498                     free(mta);
499                     return other[i];
500                 }
501         }
502         free (mta);
503     }
504
505     return NULL;
506 }
507
508 static int
509 notmuch_reply_format_default(void *ctx,
510                              notmuch_config_t *config,
511                              notmuch_query_t *query,
512                              notmuch_show_params_t *params,
513                              notmuch_bool_t reply_all)
514 {
515     GMimeMessage *reply;
516     notmuch_messages_t *messages;
517     notmuch_message_t *message;
518     const char *subject, *from_addr = NULL;
519     const char *in_reply_to, *orig_references, *references;
520     const notmuch_show_format_t *format = &format_reply;
521
522     for (messages = notmuch_query_search_messages (query);
523          notmuch_messages_valid (messages);
524          notmuch_messages_move_to_next (messages))
525     {
526         message = notmuch_messages_get (messages);
527
528         /* The 1 means we want headers in a "pretty" order. */
529         reply = g_mime_message_new (1);
530         if (reply == NULL) {
531             fprintf (stderr, "Out of memory\n");
532             return 1;
533         }
534
535         subject = notmuch_message_get_header (message, "subject");
536         if (subject) {
537             if (strncasecmp (subject, "Re:", 3))
538                 subject = talloc_asprintf (ctx, "Re: %s", subject);
539             g_mime_message_set_subject (reply, subject);
540         }
541
542         from_addr = add_recipients_from_message (reply, config, message,
543                                                  reply_all);
544
545         if (from_addr == NULL)
546             from_addr = guess_from_received_header (config, message);
547
548         if (from_addr == NULL)
549             from_addr = notmuch_config_get_user_primary_email (config);
550
551         from_addr = talloc_asprintf (ctx, "%s <%s>",
552                                      notmuch_config_get_user_name (config),
553                                      from_addr);
554         g_mime_object_set_header (GMIME_OBJECT (reply),
555                                   "From", from_addr);
556
557         in_reply_to = talloc_asprintf (ctx, "<%s>",
558                              notmuch_message_get_message_id (message));
559
560         g_mime_object_set_header (GMIME_OBJECT (reply),
561                                   "In-Reply-To", in_reply_to);
562
563         orig_references = notmuch_message_get_header (message, "references");
564         references = talloc_asprintf (ctx, "%s%s%s",
565                                       orig_references ? orig_references : "",
566                                       orig_references ? " " : "",
567                                       in_reply_to);
568         g_mime_object_set_header (GMIME_OBJECT (reply),
569                                   "References", references);
570
571         show_reply_headers (reply);
572
573         g_object_unref (G_OBJECT (reply));
574         reply = NULL;
575
576         printf ("On %s, %s wrote:\n",
577                 notmuch_message_get_header (message, "date"),
578                 notmuch_message_get_header (message, "from"));
579
580         show_message_body (message, format, params);
581
582         notmuch_message_destroy (message);
583     }
584     return 0;
585 }
586
587 /* This format is currently tuned for a git send-email --notmuch hook */
588 static int
589 notmuch_reply_format_headers_only(void *ctx,
590                                   notmuch_config_t *config,
591                                   notmuch_query_t *query,
592                                   unused (notmuch_show_params_t *params),
593                                   notmuch_bool_t reply_all)
594 {
595     GMimeMessage *reply;
596     notmuch_messages_t *messages;
597     notmuch_message_t *message;
598     const char *in_reply_to, *orig_references, *references;
599     char *reply_headers;
600
601     for (messages = notmuch_query_search_messages (query);
602          notmuch_messages_valid (messages);
603          notmuch_messages_move_to_next (messages))
604     {
605         message = notmuch_messages_get (messages);
606
607         /* The 0 means we do not want headers in a "pretty" order. */
608         reply = g_mime_message_new (0);
609         if (reply == NULL) {
610             fprintf (stderr, "Out of memory\n");
611             return 1;
612         }
613
614         in_reply_to = talloc_asprintf (ctx, "<%s>",
615                              notmuch_message_get_message_id (message));
616
617         g_mime_object_set_header (GMIME_OBJECT (reply),
618                                   "In-Reply-To", in_reply_to);
619
620
621         orig_references = notmuch_message_get_header (message, "references");
622
623         /* We print In-Reply-To followed by References because git format-patch treats them
624          * specially.  Git does not interpret the other headers specially
625          */
626         references = talloc_asprintf (ctx, "%s%s%s",
627                                       orig_references ? orig_references : "",
628                                       orig_references ? " " : "",
629                                       in_reply_to);
630         g_mime_object_set_header (GMIME_OBJECT (reply),
631                                   "References", references);
632
633         (void)add_recipients_from_message (reply, config, message, reply_all);
634
635         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
636         printf ("%s", reply_headers);
637         free (reply_headers);
638
639         g_object_unref (G_OBJECT (reply));
640         reply = NULL;
641
642         notmuch_message_destroy (message);
643     }
644     return 0;
645 }
646
647 enum {
648     FORMAT_DEFAULT,
649     FORMAT_HEADERS_ONLY,
650 };
651
652 int
653 notmuch_reply_command (void *ctx, int argc, char *argv[])
654 {
655     notmuch_config_t *config;
656     notmuch_database_t *notmuch;
657     notmuch_query_t *query;
658     char *query_string;
659     int opt_index, ret = 0;
660     int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query, notmuch_show_params_t *params, notmuch_bool_t reply_all);
661     notmuch_show_params_t params = { .part = -1 };
662     int format = FORMAT_DEFAULT;
663     int reply_all = TRUE;
664     notmuch_bool_t decrypt = FALSE;
665
666     notmuch_opt_desc_t options[] = {
667         { NOTMUCH_OPT_KEYWORD, &format, "format", 'f',
668           (notmuch_keyword_t []){ { "default", FORMAT_DEFAULT },
669                                   { "headers-only", FORMAT_HEADERS_ONLY },
670                                   { 0, 0 } } },
671         { NOTMUCH_OPT_KEYWORD, &reply_all, "reply-to", 'r',
672           (notmuch_keyword_t []){ { "all", TRUE },
673                                   { "sender", FALSE },
674                                   { 0, 0 } } },
675         { NOTMUCH_OPT_BOOLEAN, &decrypt, "decrypt", 'd', 0 },
676         { 0, 0, 0, 0, 0 }
677     };
678
679     opt_index = parse_arguments (argc, argv, options, 1);
680     if (opt_index < 0) {
681         /* diagnostics already printed */
682         return 1;
683     }
684
685     if (format == FORMAT_HEADERS_ONLY)
686         reply_format_func = notmuch_reply_format_headers_only;
687     else
688         reply_format_func = notmuch_reply_format_default;
689
690     if (decrypt) {
691 #ifdef GMIME_ATLEAST_26
692         /* TODO: GMimePasswordRequestFunc */
693         params.cryptoctx = g_mime_gpg_context_new (NULL, "gpg");
694 #else
695         GMimeSession* session = g_object_new (g_mime_session_get_type(), NULL);
696         params.cryptoctx = g_mime_gpg_context_new (session, "gpg");
697 #endif
698         if (params.cryptoctx) {
699             g_mime_gpg_context_set_always_trust ((GMimeGpgContext*) params.cryptoctx, FALSE);
700             params.decrypt = TRUE;
701         } else {
702             fprintf (stderr, "Failed to construct gpg context.\n");
703         }
704 #ifndef GMIME_ATLEAST_26
705         g_object_unref (session);
706 #endif
707     }
708
709     config = notmuch_config_open (ctx, NULL, NULL);
710     if (config == NULL)
711         return 1;
712
713     query_string = query_string_from_args (ctx, argc-opt_index, argv+opt_index);
714     if (query_string == NULL) {
715         fprintf (stderr, "Out of memory\n");
716         return 1;
717     }
718
719     if (*query_string == '\0') {
720         fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
721         return 1;
722     }
723
724     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
725                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
726     if (notmuch == NULL)
727         return 1;
728
729     query = notmuch_query_create (notmuch, query_string);
730     if (query == NULL) {
731         fprintf (stderr, "Out of memory\n");
732         return 1;
733     }
734
735     if (reply_format_func (ctx, config, query, &params, reply_all) != 0)
736         return 1;
737
738     notmuch_query_destroy (query);
739     notmuch_database_close (notmuch);
740
741     if (params.cryptoctx)
742         g_object_unref(params.cryptoctx);
743
744     return ret;
745 }