]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
build: drop support for gmime-2.6
[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 https://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 "string-util.h"
25 #include "sprinter.h"
26
27 static void
28 show_reply_headers (GMimeStream *stream, GMimeMessage *message)
29 {
30     /* Output RFC 2822 formatted (and RFC 2047 encoded) headers. */
31     if (g_mime_object_write_to_stream (GMIME_OBJECT(message), stream) < 0) {
32         INTERNAL_ERROR("failed to write headers to stdout\n");
33     }
34 }
35
36 static void
37 format_part_reply (GMimeStream *stream, mime_node_t *node)
38 {
39     int i;
40
41     if (node->envelope_file) {
42         g_mime_stream_printf (stream, "On %s, %s wrote:\n",
43                               notmuch_message_get_header (node->envelope_file, "date"),
44                               notmuch_message_get_header (node->envelope_file, "from"));
45     } else if (GMIME_IS_MESSAGE (node->part)) {
46         GMimeMessage *message = GMIME_MESSAGE (node->part);
47         char *recipients_string;
48
49         g_mime_stream_printf (stream, "> From: %s\n", g_mime_message_get_from_string (message));
50         recipients_string = g_mime_message_get_address_string (message, GMIME_ADDRESS_TYPE_TO);
51         if (recipients_string)
52             g_mime_stream_printf (stream, "> To: %s\n",
53                                   recipients_string);
54         g_free (recipients_string);
55         recipients_string = g_mime_message_get_address_string (message, GMIME_ADDRESS_TYPE_CC);
56         if (recipients_string)
57             g_mime_stream_printf (stream, "> Cc: %s\n",
58                                   recipients_string);
59         g_free (recipients_string);
60         g_mime_stream_printf (stream, "> Subject: %s\n", g_mime_message_get_subject (message));
61         g_mime_stream_printf (stream, "> Date: %s\n", g_mime_message_get_date_string (node, message));
62         g_mime_stream_printf (stream, ">\n");
63     } else if (GMIME_IS_PART (node->part)) {
64         GMimeContentType *content_type = g_mime_object_get_content_type (node->part);
65         GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (node->part);
66
67         if (g_mime_content_type_is_type (content_type, "application", "pgp-encrypted") ||
68             g_mime_content_type_is_type (content_type, "application", "pgp-signature")) {
69             /* Ignore PGP/MIME cruft parts */
70         } else if (g_mime_content_type_is_type (content_type, "text", "*") &&
71                    !g_mime_content_type_is_type (content_type, "text", "html")) {
72             show_text_part_content (node->part, stream, NOTMUCH_SHOW_TEXT_PART_REPLY);
73         } else if (disposition &&
74                    strcasecmp (g_mime_content_disposition_get_disposition (disposition),
75                                GMIME_DISPOSITION_ATTACHMENT) == 0) {
76             const char *filename = g_mime_part_get_filename (GMIME_PART (node->part));
77             g_mime_stream_printf (stream, "Attachment: %s (%s)\n", filename,
78                                   g_mime_content_type_to_string (content_type));
79         } else {
80             g_mime_stream_printf (stream, "Non-text part: %s\n",
81                                   g_mime_content_type_to_string (content_type));
82         }
83     }
84
85     for (i = 0; i < node->nchildren; i++)
86         format_part_reply (stream, mime_node_child (node, i));
87 }
88
89 typedef enum {
90     USER_ADDRESS_IN_STRING,
91     STRING_IN_USER_ADDRESS,
92     STRING_IS_USER_ADDRESS,
93 } address_match_t;
94
95 /* Match given string against given address according to mode. */
96 static bool
97 match_address (const char *str, const char *address, address_match_t mode)
98 {
99     switch (mode) {
100     case USER_ADDRESS_IN_STRING:
101         return strcasestr (str, address) != NULL;
102     case STRING_IN_USER_ADDRESS:
103         return strcasestr (address, str) != NULL;
104     case STRING_IS_USER_ADDRESS:
105         return strcasecmp (address, str) == 0;
106     }
107
108     return false;
109 }
110
111 /* Match given string against user's configured "primary" and "other"
112  * addresses according to mode. */
113 static const char *
114 address_match (const char *str, notmuch_config_t *config, address_match_t mode)
115 {
116     const char *primary;
117     const char **other;
118     size_t i, other_len;
119
120     if (!str || *str == '\0')
121         return NULL;
122
123     primary = notmuch_config_get_user_primary_email (config);
124     if (match_address (str, primary, mode))
125         return primary;
126
127     other = notmuch_config_get_user_other_email (config, &other_len);
128     for (i = 0; i < other_len; i++) {
129         if (match_address (str, other[i], mode))
130             return other[i];
131     }
132
133     return NULL;
134 }
135
136 /* Does the given string contain an address configured as one of the
137  * user's "primary" or "other" addresses. If so, return the matching
138  * address, NULL otherwise. */
139 static const char *
140 user_address_in_string (const char *str, notmuch_config_t *config)
141 {
142     return address_match (str, config, USER_ADDRESS_IN_STRING);
143 }
144
145 /* Do any of the addresses configured as one of the user's "primary"
146  * or "other" addresses contain the given string. If so, return the
147  * matching address, NULL otherwise. */
148 static const char *
149 string_in_user_address (const char *str, notmuch_config_t *config)
150 {
151     return address_match (str, config, STRING_IN_USER_ADDRESS);
152 }
153
154 /* Is the given address configured as one of the user's "primary" or
155  * "other" addresses. */
156 static bool
157 address_is_users (const char *address, notmuch_config_t *config)
158 {
159     return address_match (address, config, STRING_IS_USER_ADDRESS) != NULL;
160 }
161
162 /* Scan addresses in 'list'.
163  *
164  * If 'message' is non-NULL, then for each address in 'list' that is
165  * not configured as one of the user's addresses in 'config', add that
166  * address to 'message' as an address of 'type'.
167  *
168  * If 'user_from' is non-NULL and *user_from is NULL, *user_from will
169  * be set to the first address encountered in 'list' that is the
170  * user's address.
171  *
172  * Return the number of addresses added to 'message'. (If 'message' is
173  * NULL, the function returns 0 by definition.)
174  */
175 static unsigned int
176 scan_address_list (InternetAddressList *list,
177                    notmuch_config_t *config,
178                    GMimeMessage *message,
179                    GMimeRecipientType type,
180                    const char **user_from)
181 {
182     InternetAddress *address;
183     int i;
184     unsigned int n = 0;
185
186     if (list == NULL)
187         return 0;
188
189     for (i = 0; i < internet_address_list_length (list); i++) {
190         address = internet_address_list_get_address (list, i);
191         if (INTERNET_ADDRESS_IS_GROUP (address)) {
192             InternetAddressGroup *group;
193             InternetAddressList *group_list;
194
195             group = INTERNET_ADDRESS_GROUP (address);
196             group_list = internet_address_group_get_members (group);
197             n += scan_address_list (group_list, config, message, type, user_from);
198         } else {
199             InternetAddressMailbox *mailbox;
200             const char *name;
201             const char *addr;
202
203             mailbox = INTERNET_ADDRESS_MAILBOX (address);
204
205             name = internet_address_get_name (address);
206             addr = internet_address_mailbox_get_addr (mailbox);
207
208             if (address_is_users (addr, config)) {
209                 if (user_from && *user_from == NULL)
210                     *user_from = addr;
211             } else if (message) {
212                 g_mime_message_add_recipient (message, type, name, addr);
213                 n++;
214             }
215         }
216     }
217
218     return n;
219 }
220
221 /* Does the address in the Reply-To header of 'message' already appear
222  * in either the 'To' or 'Cc' header of the message?
223  */
224 static bool
225 reply_to_header_is_redundant (GMimeMessage *message,
226                               InternetAddressList *reply_to_list)
227 {
228     const char *addr, *reply_to;
229     InternetAddress *address;
230     InternetAddressMailbox *mailbox;
231     InternetAddressList *recipients;
232     bool ret = false;
233     int i;
234
235     if (reply_to_list == NULL ||
236         internet_address_list_length (reply_to_list) != 1)
237         return 0;
238
239     address = internet_address_list_get_address (reply_to_list, 0);
240     if (INTERNET_ADDRESS_IS_GROUP (address))
241         return 0;
242
243     mailbox = INTERNET_ADDRESS_MAILBOX (address);
244     reply_to = internet_address_mailbox_get_addr (mailbox);
245
246     recipients = g_mime_message_get_all_recipients (message);
247
248     for (i = 0; i < internet_address_list_length (recipients); i++) {
249         address = internet_address_list_get_address (recipients, i);
250         if (INTERNET_ADDRESS_IS_GROUP (address))
251             continue;
252
253         mailbox = INTERNET_ADDRESS_MAILBOX (address);
254         addr = internet_address_mailbox_get_addr (mailbox);
255         if (strcmp (addr, reply_to) == 0) {
256             ret = true;
257             break;
258         }
259     }
260
261     g_object_unref (G_OBJECT (recipients));
262
263     return ret;
264 }
265
266 static InternetAddressList *get_sender(GMimeMessage *message)
267 {
268     InternetAddressList *reply_to_list;
269
270     reply_to_list = g_mime_message_get_reply_to_list (message);
271     if (reply_to_list &&
272         internet_address_list_length (reply_to_list) > 0) {
273         /*
274          * Some mailing lists munge the Reply-To header despite it
275          * being A Bad Thing, see
276          * http://marc.merlins.org/netrants/reply-to-harmful.html
277          *
278          * The munging is easy to detect, because it results in a
279          * redundant reply-to header, (with an address that already
280          * exists in either To or Cc). So in this case, we ignore the
281          * Reply-To field and use the From header. This ensures the
282          * original sender will get the reply even if not subscribed
283          * to the list. Note that the address in the Reply-To header
284          * will always appear in the reply if reply_all is true.
285          */
286         if (! reply_to_header_is_redundant (message, reply_to_list))
287             return reply_to_list;
288
289         g_mime_2_6_unref (G_OBJECT (reply_to_list));
290     }
291
292     return g_mime_message_get_from (message);
293 }
294
295 static InternetAddressList *get_to(GMimeMessage *message)
296 {
297     return g_mime_message_get_addresses (message, GMIME_ADDRESS_TYPE_TO);
298 }
299
300 static InternetAddressList *get_cc(GMimeMessage *message)
301 {
302     return g_mime_message_get_addresses (message, GMIME_ADDRESS_TYPE_CC);
303 }
304
305 static InternetAddressList *get_bcc(GMimeMessage *message)
306 {
307     return g_mime_message_get_addresses (message, GMIME_ADDRESS_TYPE_BCC);
308 }
309
310 /* Augment the recipients of 'reply' from the "Reply-to:", "From:",
311  * "To:", "Cc:", and "Bcc:" headers of 'message'.
312  *
313  * If 'reply_all' is true, use sender and all recipients, otherwise
314  * scan the headers for the first that contains something other than
315  * the user's addresses and add the recipients from this header
316  * (typically this would be reply-to-sender, but also handles reply to
317  * user's own message in a sensible way).
318  *
319  * If any of the user's addresses were found in these headers, the
320  * first of these returned, otherwise NULL is returned.
321  */
322 static const char *
323 add_recipients_from_message (GMimeMessage *reply,
324                              notmuch_config_t *config,
325                              GMimeMessage *message,
326                              bool reply_all)
327 {
328     struct {
329         InternetAddressList * (*get_header)(GMimeMessage *message);
330         GMimeRecipientType recipient_type;
331     } reply_to_map[] = {
332         { get_sender,   GMIME_ADDRESS_TYPE_TO },
333         { get_to,       GMIME_ADDRESS_TYPE_TO },
334         { get_cc,       GMIME_ADDRESS_TYPE_CC },
335         { get_bcc,      GMIME_ADDRESS_TYPE_BCC },
336     };
337     const char *from_addr = NULL;
338     unsigned int i;
339     unsigned int n = 0;
340
341     for (i = 0; i < ARRAY_SIZE (reply_to_map); i++) {
342         InternetAddressList *recipients;
343
344         recipients = reply_to_map[i].get_header (message);
345
346         n += scan_address_list (recipients, config, reply,
347                                 reply_to_map[i].recipient_type, &from_addr);
348
349         if (!reply_all && n) {
350             /* Stop adding new recipients in reply-to-sender mode if
351              * we have added some recipient(s) above.
352              *
353              * This also handles the case of user replying to his own
354              * message, where reply-to/from is not a recipient. In
355              * this case there may be more than one recipient even if
356              * not replying to all.
357              */
358             reply = NULL;
359
360             /* From address and some recipients are enough, bail out. */
361             if (from_addr)
362                 break;
363         }
364     }
365
366     /* If no recipients were added but we found one of the user's
367      * addresses to use as a from address then the message is from the
368      * user to the user - add the discovered from address to the list
369      * of recipients so that the reply goes back to the user.
370      */
371     if (n == 0 && from_addr)
372         g_mime_message_add_recipient (reply, GMIME_ADDRESS_TYPE_TO, NULL, from_addr);
373
374     return from_addr;
375 }
376
377 /*
378  * Look for the user's address in " for <email@add.res>" in the
379  * received headers.
380  *
381  * Return the address that was found, if any, and NULL otherwise.
382  */
383 static const char *
384 guess_from_in_received_for (notmuch_config_t *config, const char *received)
385 {
386     const char *ptr;
387
388     ptr = strstr (received, " for ");
389     if (! ptr)
390         return NULL;
391
392     return user_address_in_string (ptr, config);
393 }
394
395 /*
396  * Parse all the " by MTA ..." parts in received headers to guess the
397  * email address that this was originally delivered to.
398  *
399  * Extract just the MTA here by removing leading whitespace and
400  * assuming that the MTA name ends at the next whitespace. Test for
401  * *(by+4) to be non-'\0' to make sure there's something there at all
402  * - and then assume that the first whitespace delimited token that
403  * follows is the receiving system in this step of the receive chain.
404  *
405  * Return the address that was found, if any, and NULL otherwise.
406  */
407 static const char *
408 guess_from_in_received_by (notmuch_config_t *config, const char *received)
409 {
410     const char *addr;
411     const char *by = received;
412     char *domain, *tld, *mta, *ptr, *token;
413
414     while ((by = strstr (by, " by ")) != NULL) {
415         by += 4;
416         if (*by == '\0')
417             break;
418         mta = xstrdup (by);
419         token = strtok(mta," \t");
420         if (token == NULL) {
421             free (mta);
422             break;
423         }
424         /*
425          * Now extract the last two components of the MTA host name as
426          * domain and tld.
427          */
428         domain = tld = NULL;
429         while ((ptr = strsep (&token, ". \t")) != NULL) {
430             if (*ptr == '\0')
431                 continue;
432             domain = tld;
433             tld = ptr;
434         }
435
436         if (domain) {
437             /*
438              * Recombine domain and tld and look for it among the
439              * configured email addresses. This time we have a known
440              * domain name and nothing else - so the test is the other
441              * way around: we check if this is a substring of one of
442              * the email addresses.
443              */
444             *(tld - 1) = '.';
445
446             addr = string_in_user_address (domain, config);
447             if (addr) {
448                 free (mta);
449                 return addr;
450             }
451         }
452         free (mta);
453     }
454
455     return NULL;
456 }
457
458 /*
459  * Get the concatenated Received: headers and search from the front
460  * (last Received: header added) and try to extract from them
461  * indications to which email address this message was delivered.
462  *
463  * The Received: header is special in our get_header function and is
464  * always concatenated.
465  *
466  * Return the address that was found, if any, and NULL otherwise.
467  */
468 static const char *
469 guess_from_in_received_headers (notmuch_config_t *config,
470                                 notmuch_message_t *message)
471 {
472     const char *received, *addr;
473     char *sanitized;
474
475     received = notmuch_message_get_header (message, "received");
476     if (! received)
477         return NULL;
478
479     sanitized = sanitize_string (NULL, received);
480     if (! sanitized)
481         return NULL;
482
483     addr = guess_from_in_received_for (config, sanitized);
484     if (! addr)
485         addr = guess_from_in_received_by (config, sanitized);
486
487     talloc_free (sanitized);
488
489     return addr;
490 }
491
492 /*
493  * Try to find user's email address in one of the extra To-like
494  * headers: Envelope-To, X-Original-To, and Delivered-To (searched in
495  * that order).
496  *
497  * Return the address that was found, if any, and NULL otherwise.
498  */
499 static const char *
500 get_from_in_to_headers (notmuch_config_t *config, notmuch_message_t *message)
501 {
502     size_t i;
503     const char *tohdr, *addr;
504     const char *to_headers[] = {
505         "Envelope-to",
506         "X-Original-To",
507         "Delivered-To",
508     };
509
510     for (i = 0; i < ARRAY_SIZE (to_headers); i++) {
511         tohdr = notmuch_message_get_header (message, to_headers[i]);
512
513         /* Note: tohdr potentially contains a list of email addresses. */
514         addr = user_address_in_string (tohdr, config);
515         if (addr)
516             return addr;
517     }
518
519     return NULL;
520 }
521
522 static GMimeMessage *
523 create_reply_message(void *ctx,
524                      notmuch_config_t *config,
525                      notmuch_message_t *message,
526                      GMimeMessage *mime_message,
527                      bool reply_all,
528                      bool limited)
529 {
530     const char *subject, *from_addr = NULL;
531     const char *in_reply_to, *orig_references, *references;
532
533     /*
534      * Use the below header order for limited headers, "pretty" order
535      * otherwise.
536      */
537     GMimeMessage *reply = g_mime_message_new (limited ? 0 : 1);
538     if (reply == NULL) {
539         fprintf (stderr, "Out of memory\n");
540         return NULL;
541     }
542
543     in_reply_to = talloc_asprintf (ctx, "<%s>",
544                                    notmuch_message_get_message_id (message));
545
546     g_mime_object_set_header (GMIME_OBJECT (reply), "In-Reply-To", in_reply_to);
547
548     orig_references = notmuch_message_get_header (message, "references");
549     if (orig_references && *orig_references)
550         references = talloc_asprintf (ctx, "%s %s", orig_references,
551                                       in_reply_to);
552     else
553         references = talloc_strdup (ctx, in_reply_to);
554
555     g_mime_object_set_header (GMIME_OBJECT (reply), "References", references);
556
557     from_addr = add_recipients_from_message (reply, config,
558                                              mime_message, reply_all);
559
560     /* The above is all that is needed for limited headers. */
561     if (limited)
562         return reply;
563
564     /*
565      * Sadly, there is no standard way to find out to which email
566      * address a mail was delivered - what is in the headers depends
567      * on the MTAs used along the way.
568      *
569      * If none of the user's email addresses are in the To: or Cc:
570      * headers, we try a number of heuristics which hopefully will
571      * answer this question.
572      *
573      * First, check for Envelope-To:, X-Original-To:, and
574      * Delivered-To: headers.
575      */
576     if (from_addr == NULL)
577         from_addr = get_from_in_to_headers (config, message);
578
579     /*
580      * Check for a (for <email@add.res>) clause in Received: headers,
581      * and the domain part of known email addresses in the 'by' part
582      * of Received: headers
583      */
584     if (from_addr == NULL)
585         from_addr = guess_from_in_received_headers (config, message);
586
587     /* Default to user's primary address. */
588     if (from_addr == NULL)
589         from_addr = notmuch_config_get_user_primary_email (config);
590
591     from_addr = talloc_asprintf (ctx, "%s <%s>",
592                                  notmuch_config_get_user_name (config),
593                                  from_addr);
594     g_mime_object_set_header (GMIME_OBJECT (reply), "From", from_addr);
595
596     subject = notmuch_message_get_header (message, "subject");
597     if (subject) {
598         if (strncasecmp (subject, "Re:", 3))
599             subject = talloc_asprintf (ctx, "Re: %s", subject);
600         g_mime_message_set_subject (reply, subject);
601     }
602
603     return reply;
604 }
605
606 enum {
607     FORMAT_DEFAULT,
608     FORMAT_JSON,
609     FORMAT_SEXP,
610     FORMAT_HEADERS_ONLY,
611 };
612
613 static int do_reply(notmuch_config_t *config,
614                     notmuch_query_t *query,
615                     notmuch_show_params_t *params,
616                     int format,
617                     bool reply_all)
618 {
619     GMimeMessage *reply;
620     mime_node_t *node;
621     notmuch_messages_t *messages;
622     notmuch_message_t *message;
623     notmuch_status_t status;
624     struct sprinter *sp = NULL;
625
626     if (format == FORMAT_JSON || format == FORMAT_SEXP) {
627         unsigned count;
628
629         status = notmuch_query_count_messages (query, &count);
630         if (print_status_query ("notmuch reply", query, status))
631             return 1;
632
633         if (count != 1) {
634             fprintf (stderr, "Error: search term did not match precisely one message (matched %u messages).\n", count);
635             return 1;
636         }
637
638         if (format == FORMAT_JSON)
639             sp = sprinter_json_create (config, stdout);
640         else
641             sp = sprinter_sexp_create (config, stdout);
642     }
643
644     status = notmuch_query_search_messages (query, &messages);
645     if (print_status_query ("notmuch reply", query, status))
646         return 1;
647
648     for (;
649          notmuch_messages_valid (messages);
650          notmuch_messages_move_to_next (messages))
651     {
652         message = notmuch_messages_get (messages);
653
654         if (mime_node_open (config, message, &params->crypto, &node))
655             return 1;
656
657         reply = create_reply_message (config, config, message,
658                                       GMIME_MESSAGE (node->part), reply_all,
659                                       format == FORMAT_HEADERS_ONLY);
660         if (!reply)
661             return 1;
662
663         if (format == FORMAT_JSON || format == FORMAT_SEXP) {
664             sp->begin_map (sp);
665
666             /* The headers of the reply message we've created */
667             sp->map_key (sp, "reply-headers");
668             format_headers_sprinter (sp, reply, true);
669
670             /* Start the original */
671             sp->map_key (sp, "original");
672             format_part_sprinter (config, sp, node, true, false);
673
674             /* End */
675             sp->end (sp);
676         } else {
677             GMimeStream *stream_stdout = stream_stdout = g_mime_stream_stdout_new ();
678             if (stream_stdout) {
679                 show_reply_headers (stream_stdout, reply);
680                 if (format == FORMAT_DEFAULT)
681                     format_part_reply (stream_stdout, node);
682             }
683             g_mime_stream_flush (stream_stdout);
684             g_object_unref(stream_stdout);
685         }
686
687         g_object_unref (G_OBJECT (reply));
688         talloc_free (node);
689
690         notmuch_message_destroy (message);
691     }
692
693     return 0;
694 }
695
696 int
697 notmuch_reply_command (notmuch_config_t *config, int argc, char *argv[])
698 {
699     notmuch_database_t *notmuch;
700     notmuch_query_t *query;
701     char *query_string;
702     int opt_index;
703     notmuch_show_params_t params = {
704         .part = -1,
705         .crypto = { .decrypt = NOTMUCH_DECRYPT_AUTO },
706     };
707     int format = FORMAT_DEFAULT;
708     int reply_all = true;
709
710     notmuch_opt_desc_t options[] = {
711         { .opt_keyword = &format, .name = "format", .keywords =
712           (notmuch_keyword_t []){ { "default", FORMAT_DEFAULT },
713                                   { "json", FORMAT_JSON },
714                                   { "sexp", FORMAT_SEXP },
715                                   { "headers-only", FORMAT_HEADERS_ONLY },
716                                   { 0, 0 } } },
717         { .opt_int = &notmuch_format_version, .name = "format-version" },
718         { .opt_keyword = &reply_all, .name = "reply-to", .keywords =
719           (notmuch_keyword_t []){ { "all", true },
720                                   { "sender", false },
721                                   { 0, 0 } } },
722         { .opt_keyword = (int*)(&params.crypto.decrypt), .name = "decrypt",
723           .keyword_no_arg_value = "true", .keywords =
724           (notmuch_keyword_t []){ { "false", NOTMUCH_DECRYPT_FALSE },
725                                   { "auto", NOTMUCH_DECRYPT_AUTO },
726                                   { "true", NOTMUCH_DECRYPT_NOSTASH },
727                                   { 0, 0 } } },
728         { .opt_inherit = notmuch_shared_options },
729         { }
730     };
731
732     opt_index = parse_arguments (argc, argv, options, 1);
733     if (opt_index < 0)
734         return EXIT_FAILURE;
735
736     notmuch_process_shared_options (argv[0]);
737
738     notmuch_exit_if_unsupported_format ();
739
740     query_string = query_string_from_args (config, argc-opt_index, argv+opt_index);
741     if (query_string == NULL) {
742         fprintf (stderr, "Out of memory\n");
743         return EXIT_FAILURE;
744     }
745
746     if (*query_string == '\0') {
747         fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
748         return EXIT_FAILURE;
749     }
750
751 #if (GMIME_MAJOR_VERSION < 3)
752     params.crypto.gpgpath = notmuch_config_get_crypto_gpg_path (config);
753 #endif
754
755     if (notmuch_database_open (notmuch_config_get_database_path (config),
756                                NOTMUCH_DATABASE_MODE_READ_ONLY, &notmuch))
757         return EXIT_FAILURE;
758
759     notmuch_exit_if_unmatched_db_uuid (notmuch);
760
761     query = notmuch_query_create (notmuch, query_string);
762     if (query == NULL) {
763         fprintf (stderr, "Out of memory\n");
764         return EXIT_FAILURE;
765     }
766
767     if (do_reply (config, query, &params, format, reply_all) != 0)
768         return EXIT_FAILURE;
769
770     _notmuch_crypto_cleanup (&params.crypto);
771     notmuch_query_destroy (query);
772     notmuch_database_destroy (notmuch);
773
774     return EXIT_SUCCESS;
775 }