]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
cli: refactor "notmuch tag" data structures for tagging operations
[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 GMimeMessage *
509 create_reply_message(void *ctx,
510                      notmuch_config_t *config,
511                      notmuch_message_t *message,
512                      notmuch_bool_t reply_all)
513 {
514     const char *subject, *from_addr = NULL;
515     const char *in_reply_to, *orig_references, *references;
516
517     /* The 1 means we want headers in a "pretty" order. */
518     GMimeMessage *reply = g_mime_message_new (1);
519     if (reply == NULL) {
520         fprintf (stderr, "Out of memory\n");
521         return NULL;
522     }
523
524     subject = notmuch_message_get_header (message, "subject");
525     if (subject) {
526         if (strncasecmp (subject, "Re:", 3))
527             subject = talloc_asprintf (ctx, "Re: %s", subject);
528         g_mime_message_set_subject (reply, subject);
529     }
530
531     from_addr = add_recipients_from_message (reply, config,
532                                              message, reply_all);
533
534     if (from_addr == NULL)
535         from_addr = guess_from_received_header (config, message);
536
537     if (from_addr == NULL)
538         from_addr = notmuch_config_get_user_primary_email (config);
539
540     from_addr = talloc_asprintf (ctx, "%s <%s>",
541                                  notmuch_config_get_user_name (config),
542                                  from_addr);
543     g_mime_object_set_header (GMIME_OBJECT (reply),
544                               "From", from_addr);
545
546     in_reply_to = talloc_asprintf (ctx, "<%s>",
547                                    notmuch_message_get_message_id (message));
548
549     g_mime_object_set_header (GMIME_OBJECT (reply),
550                               "In-Reply-To", in_reply_to);
551
552     orig_references = notmuch_message_get_header (message, "references");
553     references = talloc_asprintf (ctx, "%s%s%s",
554                                   orig_references ? orig_references : "",
555                                   orig_references ? " " : "",
556                                   in_reply_to);
557     g_mime_object_set_header (GMIME_OBJECT (reply),
558                               "References", references);
559
560     return reply;
561 }
562
563 static int
564 notmuch_reply_format_default(void *ctx,
565                              notmuch_config_t *config,
566                              notmuch_query_t *query,
567                              notmuch_show_params_t *params,
568                              notmuch_bool_t reply_all)
569 {
570     GMimeMessage *reply;
571     notmuch_messages_t *messages;
572     notmuch_message_t *message;
573     const notmuch_show_format_t *format = &format_reply;
574
575     for (messages = notmuch_query_search_messages (query);
576          notmuch_messages_valid (messages);
577          notmuch_messages_move_to_next (messages))
578     {
579         message = notmuch_messages_get (messages);
580
581         reply = create_reply_message (ctx, config, message, reply_all);
582
583         /* If reply creation failed, we're out of memory, so don't
584          * bother trying any more messages.
585          */
586         if (!reply) {
587             notmuch_message_destroy (message);
588             return 1;
589         }
590
591         show_reply_headers (reply);
592
593         g_object_unref (G_OBJECT (reply));
594         reply = NULL;
595
596         printf ("On %s, %s wrote:\n",
597                 notmuch_message_get_header (message, "date"),
598                 notmuch_message_get_header (message, "from"));
599
600         show_message_body (message, format, params);
601
602         notmuch_message_destroy (message);
603     }
604     return 0;
605 }
606
607 static int
608 notmuch_reply_format_json(void *ctx,
609                           notmuch_config_t *config,
610                           notmuch_query_t *query,
611                           notmuch_show_params_t *params,
612                           notmuch_bool_t reply_all)
613 {
614     GMimeMessage *reply;
615     notmuch_messages_t *messages;
616     notmuch_message_t *message;
617     mime_node_t *node;
618
619     if (notmuch_query_count_messages (query) != 1) {
620         fprintf (stderr, "Error: search term did not match precisely one message.\n");
621         return 1;
622     }
623
624     messages = notmuch_query_search_messages (query);
625     message = notmuch_messages_get (messages);
626     if (mime_node_open (ctx, message, params->cryptoctx, params->decrypt,
627                         &node) != NOTMUCH_STATUS_SUCCESS)
628         return 1;
629
630     reply = create_reply_message (ctx, config, message, reply_all);
631     if (!reply)
632         return 1;
633
634     /* The headers of the reply message we've created */
635     printf ("{\"reply-headers\": ");
636     format_headers_json (ctx, reply, TRUE);
637     g_object_unref (G_OBJECT (reply));
638     reply = NULL;
639
640     /* Start the original */
641     printf (", \"original\": ");
642
643     format_part_json (ctx, node, TRUE);
644
645     /* End */
646     printf ("}\n");
647     notmuch_message_destroy (message);
648
649     return 0;
650 }
651
652 /* This format is currently tuned for a git send-email --notmuch hook */
653 static int
654 notmuch_reply_format_headers_only(void *ctx,
655                                   notmuch_config_t *config,
656                                   notmuch_query_t *query,
657                                   unused (notmuch_show_params_t *params),
658                                   notmuch_bool_t reply_all)
659 {
660     GMimeMessage *reply;
661     notmuch_messages_t *messages;
662     notmuch_message_t *message;
663     const char *in_reply_to, *orig_references, *references;
664     char *reply_headers;
665
666     for (messages = notmuch_query_search_messages (query);
667          notmuch_messages_valid (messages);
668          notmuch_messages_move_to_next (messages))
669     {
670         message = notmuch_messages_get (messages);
671
672         /* The 0 means we do not want headers in a "pretty" order. */
673         reply = g_mime_message_new (0);
674         if (reply == NULL) {
675             fprintf (stderr, "Out of memory\n");
676             return 1;
677         }
678
679         in_reply_to = talloc_asprintf (ctx, "<%s>",
680                              notmuch_message_get_message_id (message));
681
682         g_mime_object_set_header (GMIME_OBJECT (reply),
683                                   "In-Reply-To", in_reply_to);
684
685
686         orig_references = notmuch_message_get_header (message, "references");
687
688         /* We print In-Reply-To followed by References because git format-patch treats them
689          * specially.  Git does not interpret the other headers specially
690          */
691         references = talloc_asprintf (ctx, "%s%s%s",
692                                       orig_references ? orig_references : "",
693                                       orig_references ? " " : "",
694                                       in_reply_to);
695         g_mime_object_set_header (GMIME_OBJECT (reply),
696                                   "References", references);
697
698         (void)add_recipients_from_message (reply, config, message, reply_all);
699
700         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
701         printf ("%s", reply_headers);
702         free (reply_headers);
703
704         g_object_unref (G_OBJECT (reply));
705         reply = NULL;
706
707         notmuch_message_destroy (message);
708     }
709     return 0;
710 }
711
712 enum {
713     FORMAT_DEFAULT,
714     FORMAT_JSON,
715     FORMAT_HEADERS_ONLY,
716 };
717
718 int
719 notmuch_reply_command (void *ctx, int argc, char *argv[])
720 {
721     notmuch_config_t *config;
722     notmuch_database_t *notmuch;
723     notmuch_query_t *query;
724     char *query_string;
725     int opt_index, ret = 0;
726     int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query, notmuch_show_params_t *params, notmuch_bool_t reply_all);
727     notmuch_show_params_t params = { .part = -1 };
728     int format = FORMAT_DEFAULT;
729     int reply_all = TRUE;
730
731     notmuch_opt_desc_t options[] = {
732         { NOTMUCH_OPT_KEYWORD, &format, "format", 'f',
733           (notmuch_keyword_t []){ { "default", FORMAT_DEFAULT },
734                                   { "json", FORMAT_JSON },
735                                   { "headers-only", FORMAT_HEADERS_ONLY },
736                                   { 0, 0 } } },
737         { NOTMUCH_OPT_KEYWORD, &reply_all, "reply-to", 'r',
738           (notmuch_keyword_t []){ { "all", TRUE },
739                                   { "sender", FALSE },
740                                   { 0, 0 } } },
741         { NOTMUCH_OPT_BOOLEAN, &params.decrypt, "decrypt", 'd', 0 },
742         { 0, 0, 0, 0, 0 }
743     };
744
745     opt_index = parse_arguments (argc, argv, options, 1);
746     if (opt_index < 0) {
747         /* diagnostics already printed */
748         return 1;
749     }
750
751     if (format == FORMAT_HEADERS_ONLY)
752         reply_format_func = notmuch_reply_format_headers_only;
753     else if (format == FORMAT_JSON)
754         reply_format_func = notmuch_reply_format_json;
755     else
756         reply_format_func = notmuch_reply_format_default;
757
758     if (params.decrypt) {
759 #ifdef GMIME_ATLEAST_26
760         /* TODO: GMimePasswordRequestFunc */
761         params.cryptoctx = g_mime_gpg_context_new (NULL, "gpg");
762 #else
763         GMimeSession* session = g_object_new (g_mime_session_get_type(), NULL);
764         params.cryptoctx = g_mime_gpg_context_new (session, "gpg");
765 #endif
766         if (params.cryptoctx) {
767             g_mime_gpg_context_set_always_trust ((GMimeGpgContext*) params.cryptoctx, FALSE);
768         } else {
769             params.decrypt = FALSE;
770             fprintf (stderr, "Failed to construct gpg context.\n");
771         }
772 #ifndef GMIME_ATLEAST_26
773         g_object_unref (session);
774 #endif
775     }
776
777     config = notmuch_config_open (ctx, NULL, NULL);
778     if (config == NULL)
779         return 1;
780
781     query_string = query_string_from_args (ctx, argc-opt_index, argv+opt_index);
782     if (query_string == NULL) {
783         fprintf (stderr, "Out of memory\n");
784         return 1;
785     }
786
787     if (*query_string == '\0') {
788         fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
789         return 1;
790     }
791
792     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
793                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
794     if (notmuch == NULL)
795         return 1;
796
797     query = notmuch_query_create (notmuch, query_string);
798     if (query == NULL) {
799         fprintf (stderr, "Out of memory\n");
800         return 1;
801     }
802
803     if (reply_format_func (ctx, config, query, &params, reply_all) != 0)
804         return 1;
805
806     notmuch_query_destroy (query);
807     notmuch_database_close (notmuch);
808
809     if (params.cryptoctx)
810         g_object_unref(params.cryptoctx);
811
812     return ret;
813 }