]> rtime.felk.cvut.cz Git - notmuch.git/blob - notmuch-search.c
cli: address: Add --filter-by option to configure address filtering
[notmuch.git] / notmuch-search.c
1 /* notmuch - Not much of an email program, (just index and search)
2  *
3  * Copyright © 2009 Carl Worth
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see http://www.gnu.org/licenses/ .
17  *
18  * Author: Carl Worth <cworth@cworth.org>
19  */
20
21 #include "notmuch-client.h"
22 #include "sprinter.h"
23 #include "string-util.h"
24
25 typedef enum {
26     /* Search command */
27     OUTPUT_SUMMARY      = 1 << 0,
28     OUTPUT_THREADS      = 1 << 1,
29     OUTPUT_MESSAGES     = 1 << 2,
30     OUTPUT_FILES        = 1 << 3,
31     OUTPUT_TAGS         = 1 << 4,
32
33     /* Address command */
34     OUTPUT_SENDER       = 1 << 5,
35     OUTPUT_RECIPIENTS   = 1 << 6,
36     OUTPUT_COUNT        = 1 << 7,
37 } output_t;
38
39 typedef enum {
40     NOTMUCH_FORMAT_JSON,
41     NOTMUCH_FORMAT_TEXT,
42     NOTMUCH_FORMAT_TEXT0,
43     NOTMUCH_FORMAT_SEXP
44 } format_sel_t;
45
46 typedef enum {
47     FILTER_BY_NAMEADDR = 0,
48     FILTER_BY_NAME,
49     FILTER_BY_ADDR,
50     FILTER_BY_ADDRFOLD,
51     FILTER_BY_NAMEADDRFOLD,
52 } filter_by_t;
53
54 typedef struct {
55     notmuch_database_t *notmuch;
56     format_sel_t format_sel;
57     sprinter_t *format;
58     notmuch_exclude_t exclude;
59     notmuch_query_t *query;
60     notmuch_sort_t sort;
61     output_t output;
62     int offset;
63     int limit;
64     int dupe;
65     GHashTable *addresses;
66     filter_by_t filter_by;
67 } search_context_t;
68
69 typedef struct {
70     const char *name;
71     const char *addr;
72     int count;
73 } mailbox_t;
74
75 /* Return two stable query strings that identify exactly the matched
76  * and unmatched messages currently in thread.  If there are no
77  * matched or unmatched messages, the returned buffers will be
78  * NULL. */
79 static int
80 get_thread_query (notmuch_thread_t *thread,
81                   char **matched_out, char **unmatched_out)
82 {
83     notmuch_messages_t *messages;
84     char *escaped = NULL;
85     size_t escaped_len = 0;
86
87     *matched_out = *unmatched_out = NULL;
88
89     for (messages = notmuch_thread_get_messages (thread);
90          notmuch_messages_valid (messages);
91          notmuch_messages_move_to_next (messages))
92     {
93         notmuch_message_t *message = notmuch_messages_get (messages);
94         const char *mid = notmuch_message_get_message_id (message);
95         /* Determine which query buffer to extend */
96         char **buf = notmuch_message_get_flag (
97             message, NOTMUCH_MESSAGE_FLAG_MATCH) ? matched_out : unmatched_out;
98         /* Add this message's id: query.  Since "id" is an exclusive
99          * prefix, it is implicitly 'or'd together, so we only need to
100          * join queries with a space. */
101         if (make_boolean_term (thread, "id", mid, &escaped, &escaped_len) < 0)
102             return -1;
103         if (*buf)
104             *buf = talloc_asprintf_append_buffer (*buf, " %s", escaped);
105         else
106             *buf = talloc_strdup (thread, escaped);
107         if (!*buf)
108             return -1;
109     }
110     talloc_free (escaped);
111     return 0;
112 }
113
114 static int
115 do_search_threads (search_context_t *ctx)
116 {
117     notmuch_thread_t *thread;
118     notmuch_threads_t *threads;
119     notmuch_tags_t *tags;
120     sprinter_t *format = ctx->format;
121     time_t date;
122     int i;
123
124     if (ctx->offset < 0) {
125         ctx->offset += notmuch_query_count_threads (ctx->query);
126         if (ctx->offset < 0)
127             ctx->offset = 0;
128     }
129
130     threads = notmuch_query_search_threads (ctx->query);
131     if (threads == NULL)
132         return 1;
133
134     format->begin_list (format);
135
136     for (i = 0;
137          notmuch_threads_valid (threads) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
138          notmuch_threads_move_to_next (threads), i++)
139     {
140         thread = notmuch_threads_get (threads);
141
142         if (i < ctx->offset) {
143             notmuch_thread_destroy (thread);
144             continue;
145         }
146
147         if (ctx->output == OUTPUT_THREADS) {
148             format->set_prefix (format, "thread");
149             format->string (format,
150                             notmuch_thread_get_thread_id (thread));
151             format->separator (format);
152         } else { /* output == OUTPUT_SUMMARY */
153             void *ctx_quote = talloc_new (thread);
154             const char *authors = notmuch_thread_get_authors (thread);
155             const char *subject = notmuch_thread_get_subject (thread);
156             const char *thread_id = notmuch_thread_get_thread_id (thread);
157             int matched = notmuch_thread_get_matched_messages (thread);
158             int total = notmuch_thread_get_total_messages (thread);
159             const char *relative_date = NULL;
160             notmuch_bool_t first_tag = TRUE;
161
162             format->begin_map (format);
163
164             if (ctx->sort == NOTMUCH_SORT_OLDEST_FIRST)
165                 date = notmuch_thread_get_oldest_date (thread);
166             else
167                 date = notmuch_thread_get_newest_date (thread);
168
169             relative_date = notmuch_time_relative_date (ctx_quote, date);
170
171             if (format->is_text_printer) {
172                 /* Special case for the text formatter */
173                 printf ("thread:%s %12s [%d/%d] %s; %s (",
174                         thread_id,
175                         relative_date,
176                         matched,
177                         total,
178                         sanitize_string (ctx_quote, authors),
179                         sanitize_string (ctx_quote, subject));
180             } else { /* Structured Output */
181                 format->map_key (format, "thread");
182                 format->string (format, thread_id);
183                 format->map_key (format, "timestamp");
184                 format->integer (format, date);
185                 format->map_key (format, "date_relative");
186                 format->string (format, relative_date);
187                 format->map_key (format, "matched");
188                 format->integer (format, matched);
189                 format->map_key (format, "total");
190                 format->integer (format, total);
191                 format->map_key (format, "authors");
192                 format->string (format, authors);
193                 format->map_key (format, "subject");
194                 format->string (format, subject);
195                 if (notmuch_format_version >= 2) {
196                     char *matched_query, *unmatched_query;
197                     if (get_thread_query (thread, &matched_query,
198                                           &unmatched_query) < 0) {
199                         fprintf (stderr, "Out of memory\n");
200                         return 1;
201                     }
202                     format->map_key (format, "query");
203                     format->begin_list (format);
204                     if (matched_query)
205                         format->string (format, matched_query);
206                     else
207                         format->null (format);
208                     if (unmatched_query)
209                         format->string (format, unmatched_query);
210                     else
211                         format->null (format);
212                     format->end (format);
213                 }
214             }
215
216             talloc_free (ctx_quote);
217
218             format->map_key (format, "tags");
219             format->begin_list (format);
220
221             for (tags = notmuch_thread_get_tags (thread);
222                  notmuch_tags_valid (tags);
223                  notmuch_tags_move_to_next (tags))
224             {
225                 const char *tag = notmuch_tags_get (tags);
226
227                 if (format->is_text_printer) {
228                   /* Special case for the text formatter */
229                     if (first_tag)
230                         first_tag = FALSE;
231                     else
232                         fputc (' ', stdout);
233                     fputs (tag, stdout);
234                 } else { /* Structured Output */
235                     format->string (format, tag);
236                 }
237             }
238
239             if (format->is_text_printer)
240                 printf (")");
241
242             format->end (format);
243             format->end (format);
244             format->separator (format);
245         }
246
247         notmuch_thread_destroy (thread);
248     }
249
250     format->end (format);
251
252     return 0;
253 }
254
255 /* Returns TRUE iff name and/or addr is considered duplicate. */
256 static notmuch_bool_t
257 is_duplicate (const search_context_t *ctx, const char *name, const char *addr)
258 {
259     notmuch_bool_t duplicate;
260     char *key;
261     gchar *addrfold = NULL;
262     mailbox_t *mailbox;
263
264     if (ctx->filter_by == FILTER_BY_ADDRFOLD ||
265         ctx->filter_by == FILTER_BY_NAMEADDRFOLD)
266         addrfold = g_utf8_casefold (addr, -1);
267
268     switch (ctx->filter_by) {
269     case FILTER_BY_NAMEADDR:
270         key = talloc_asprintf (ctx->format, "%s <%s>", name, addr);
271         break;
272     case FILTER_BY_NAMEADDRFOLD:
273         key = talloc_asprintf (ctx->format, "%s <%s>", name, addrfold);
274         break;
275     case FILTER_BY_NAME:
276         key = talloc_strdup (ctx->format, name); /* !name results in !key */
277         break;
278     case FILTER_BY_ADDR:
279         key = talloc_strdup (ctx->format, addr);
280         break;
281     case FILTER_BY_ADDRFOLD:
282         key = talloc_strdup (ctx->format, addrfold);
283         break;
284     default:
285         INTERNAL_ERROR("invalid --filter-by flags");
286     }
287
288     if (addrfold)
289         g_free (addrfold);
290
291     if (! key)
292         return FALSE;
293
294     duplicate = g_hash_table_lookup_extended (ctx->addresses, key, NULL, (gpointer)&mailbox);
295
296     if (! duplicate) {
297         mailbox = talloc (ctx->format, mailbox_t);
298         mailbox->name = talloc_strdup (mailbox, name);
299         mailbox->addr = talloc_strdup (mailbox, addr);
300         mailbox->count = 1;
301         g_hash_table_insert (ctx->addresses, key, mailbox);
302     } else {
303         mailbox->count++;
304         talloc_free (key);
305     }
306
307     return duplicate;
308 }
309
310 static void
311 print_mailbox (const search_context_t *ctx, const mailbox_t *mailbox)
312 {
313     const char *name = mailbox->name;
314     const char *addr = mailbox->addr;
315     int count = mailbox->count;
316     sprinter_t *format = ctx->format;
317     InternetAddress *ia = internet_address_mailbox_new (name, addr);
318     char *name_addr;
319
320     /* name_addr has the name part quoted if necessary. Compare
321      * 'John Doe <john@doe.com>' vs. '"Doe, John" <john@doe.com>' */
322     name_addr = internet_address_to_string (ia, FALSE);
323
324     if (format->is_text_printer) {
325         if (count > 0) {
326             format->integer (format, count);
327             format->string (format, "\t");
328         }
329         format->string (format, name_addr);
330         format->separator (format);
331     } else {
332         format->begin_map (format);
333         format->map_key (format, "name");
334         format->string (format, name);
335         format->map_key (format, "address");
336         format->string (format, addr);
337         format->map_key (format, "name-addr");
338         format->string (format, name_addr);
339         if (count > 0) {
340             format->map_key (format, "count");
341             format->integer (format, count);
342         }
343         format->end (format);
344         format->separator (format);
345     }
346
347     g_object_unref (ia);
348     g_free (name_addr);
349 }
350
351 /* Print or prepare for printing addresses from InternetAddressList. */
352 static void
353 process_address_list (const search_context_t *ctx,
354                       InternetAddressList *list)
355 {
356     InternetAddress *address;
357     int i;
358
359     for (i = 0; i < internet_address_list_length (list); i++) {
360         address = internet_address_list_get_address (list, i);
361         if (INTERNET_ADDRESS_IS_GROUP (address)) {
362             InternetAddressGroup *group;
363             InternetAddressList *group_list;
364
365             group = INTERNET_ADDRESS_GROUP (address);
366             group_list = internet_address_group_get_members (group);
367             if (group_list == NULL)
368                 continue;
369
370             process_address_list (ctx, group_list);
371         } else {
372             InternetAddressMailbox *mailbox = INTERNET_ADDRESS_MAILBOX (address);
373             mailbox_t mbx = {
374                 .name = internet_address_get_name (address),
375                 .addr = internet_address_mailbox_get_addr (mailbox),
376                 .count = 0,
377             };
378
379             if (is_duplicate (ctx, mbx.name, mbx.addr))
380                 continue;
381
382             if (ctx->output & OUTPUT_COUNT)
383                 continue;
384
385             print_mailbox (ctx, &mbx);
386         }
387     }
388 }
389
390 /* Print or prepare for printing addresses from a message header. */
391 static void
392 process_address_header (const search_context_t *ctx, const char *value)
393 {
394     InternetAddressList *list;
395
396     if (value == NULL)
397         return;
398
399     list = internet_address_list_parse_string (value);
400     if (list == NULL)
401         return;
402
403     process_address_list (ctx, list);
404
405     g_object_unref (list);
406 }
407
408 static void
409 _my_talloc_free_for_g_hash (void *ptr)
410 {
411     talloc_free (ptr);
412 }
413
414 static void
415 print_hash_value (unused (gpointer key), gpointer value, gpointer user_data)
416 {
417     const mailbox_t *mailbox = value;
418     search_context_t *ctx = user_data;
419
420     print_mailbox (ctx, mailbox);
421 }
422
423 static int
424 do_search_messages (search_context_t *ctx)
425 {
426     notmuch_message_t *message;
427     notmuch_messages_t *messages;
428     notmuch_filenames_t *filenames;
429     sprinter_t *format = ctx->format;
430     int i;
431
432     if (ctx->offset < 0) {
433         ctx->offset += notmuch_query_count_messages (ctx->query);
434         if (ctx->offset < 0)
435             ctx->offset = 0;
436     }
437
438     messages = notmuch_query_search_messages (ctx->query);
439     if (messages == NULL)
440         return 1;
441
442     format->begin_list (format);
443
444     for (i = 0;
445          notmuch_messages_valid (messages) && (ctx->limit < 0 || i < ctx->offset + ctx->limit);
446          notmuch_messages_move_to_next (messages), i++)
447     {
448         if (i < ctx->offset)
449             continue;
450
451         message = notmuch_messages_get (messages);
452
453         if (ctx->output == OUTPUT_FILES) {
454             int j;
455             filenames = notmuch_message_get_filenames (message);
456
457             for (j = 1;
458                  notmuch_filenames_valid (filenames);
459                  notmuch_filenames_move_to_next (filenames), j++)
460             {
461                 if (ctx->dupe < 0 || ctx->dupe == j) {
462                     format->string (format, notmuch_filenames_get (filenames));
463                     format->separator (format);
464                 }
465             }
466             
467             notmuch_filenames_destroy( filenames );
468
469         } else if (ctx->output == OUTPUT_MESSAGES) {
470             format->set_prefix (format, "id");
471             format->string (format,
472                             notmuch_message_get_message_id (message));
473             format->separator (format);
474         } else {
475             if (ctx->output & OUTPUT_SENDER) {
476                 const char *addrs;
477
478                 addrs = notmuch_message_get_header (message, "from");
479                 process_address_header (ctx, addrs);
480             }
481
482             if (ctx->output & OUTPUT_RECIPIENTS) {
483                 const char *hdrs[] = { "to", "cc", "bcc" };
484                 const char *addrs;
485                 size_t j;
486
487                 for (j = 0; j < ARRAY_SIZE (hdrs); j++) {
488                     addrs = notmuch_message_get_header (message, hdrs[j]);
489                     process_address_header (ctx, addrs);
490                 }
491             }
492         }
493
494         notmuch_message_destroy (message);
495     }
496
497     if (ctx->addresses && ctx->output & OUTPUT_COUNT)
498         g_hash_table_foreach (ctx->addresses, print_hash_value, ctx);
499
500     notmuch_messages_destroy (messages);
501
502     format->end (format);
503
504     return 0;
505 }
506
507 static int
508 do_search_tags (const search_context_t *ctx)
509 {
510     notmuch_messages_t *messages = NULL;
511     notmuch_tags_t *tags;
512     const char *tag;
513     sprinter_t *format = ctx->format;
514     notmuch_query_t *query = ctx->query;
515     notmuch_database_t *notmuch = ctx->notmuch;
516
517     /* should the following only special case if no excluded terms
518      * specified? */
519
520     /* Special-case query of "*" for better performance. */
521     if (strcmp (notmuch_query_get_query_string (query), "*") == 0) {
522         tags = notmuch_database_get_all_tags (notmuch);
523     } else {
524         messages = notmuch_query_search_messages (query);
525         if (messages == NULL)
526             return 1;
527
528         tags = notmuch_messages_collect_tags (messages);
529     }
530     if (tags == NULL)
531         return 1;
532
533     format->begin_list (format);
534
535     for (;
536          notmuch_tags_valid (tags);
537          notmuch_tags_move_to_next (tags))
538     {
539         tag = notmuch_tags_get (tags);
540
541         format->string (format, tag);
542         format->separator (format);
543
544     }
545
546     notmuch_tags_destroy (tags);
547
548     if (messages)
549         notmuch_messages_destroy (messages);
550
551     format->end (format);
552
553     return 0;
554 }
555
556 static int
557 _notmuch_search_prepare (search_context_t *ctx, notmuch_config_t *config, int argc, char *argv[])
558 {
559     char *query_str;
560     unsigned int i;
561
562     switch (ctx->format_sel) {
563     case NOTMUCH_FORMAT_TEXT:
564         ctx->format = sprinter_text_create (config, stdout);
565         break;
566     case NOTMUCH_FORMAT_TEXT0:
567         if (ctx->output == OUTPUT_SUMMARY) {
568             fprintf (stderr, "Error: --format=text0 is not compatible with --output=summary.\n");
569             return EXIT_FAILURE;
570         }
571         ctx->format = sprinter_text0_create (config, stdout);
572         break;
573     case NOTMUCH_FORMAT_JSON:
574         ctx->format = sprinter_json_create (config, stdout);
575         break;
576     case NOTMUCH_FORMAT_SEXP:
577         ctx->format = sprinter_sexp_create (config, stdout);
578         break;
579     default:
580         /* this should never happen */
581         INTERNAL_ERROR("no output format selected");
582     }
583
584     notmuch_exit_if_unsupported_format ();
585
586     if (notmuch_database_open (notmuch_config_get_database_path (config),
587                                NOTMUCH_DATABASE_MODE_READ_ONLY, &ctx->notmuch))
588         return EXIT_FAILURE;
589
590     query_str = query_string_from_args (ctx->notmuch, argc, argv);
591     if (query_str == NULL) {
592         fprintf (stderr, "Out of memory.\n");
593         return EXIT_FAILURE;
594     }
595     if (*query_str == '\0') {
596         fprintf (stderr, "Error: notmuch search requires at least one search term.\n");
597         return EXIT_FAILURE;
598     }
599
600     ctx->query = notmuch_query_create (ctx->notmuch, query_str);
601     if (ctx->query == NULL) {
602         fprintf (stderr, "Out of memory\n");
603         return EXIT_FAILURE;
604     }
605
606     notmuch_query_set_sort (ctx->query, ctx->sort);
607
608     if (ctx->exclude == NOTMUCH_EXCLUDE_FLAG && ctx->output != OUTPUT_SUMMARY) {
609         /* If we are not doing summary output there is nowhere to
610          * print the excluded flag so fall back on including the
611          * excluded messages. */
612         fprintf (stderr, "Warning: this output format cannot flag excluded messages.\n");
613         ctx->exclude = NOTMUCH_EXCLUDE_FALSE;
614     }
615
616     if (ctx->exclude != NOTMUCH_EXCLUDE_FALSE) {
617         const char **search_exclude_tags;
618         size_t search_exclude_tags_length;
619
620         search_exclude_tags = notmuch_config_get_search_exclude_tags
621             (config, &search_exclude_tags_length);
622         for (i = 0; i < search_exclude_tags_length; i++)
623             notmuch_query_add_tag_exclude (ctx->query, search_exclude_tags[i]);
624         notmuch_query_set_omit_excluded (ctx->query, ctx->exclude);
625     }
626
627     return 0;
628 }
629
630 static void
631 _notmuch_search_cleanup (search_context_t *ctx)
632 {
633     notmuch_query_destroy (ctx->query);
634     notmuch_database_destroy (ctx->notmuch);
635
636     talloc_free (ctx->format);
637 }
638
639 static search_context_t search_context = {
640     .format_sel = NOTMUCH_FORMAT_TEXT,
641     .exclude = NOTMUCH_EXCLUDE_TRUE,
642     .sort = NOTMUCH_SORT_NEWEST_FIRST,
643     .output = 0,
644     .offset = 0,
645     .limit = -1, /* unlimited */
646     .dupe = -1,
647 };
648
649 static const notmuch_opt_desc_t common_options[] = {
650     { NOTMUCH_OPT_KEYWORD, &search_context.sort, "sort", 's',
651       (notmuch_keyword_t []){ { "oldest-first", NOTMUCH_SORT_OLDEST_FIRST },
652                               { "newest-first", NOTMUCH_SORT_NEWEST_FIRST },
653                               { 0, 0 } } },
654     { NOTMUCH_OPT_KEYWORD, &search_context.format_sel, "format", 'f',
655       (notmuch_keyword_t []){ { "json", NOTMUCH_FORMAT_JSON },
656                               { "sexp", NOTMUCH_FORMAT_SEXP },
657                               { "text", NOTMUCH_FORMAT_TEXT },
658                               { "text0", NOTMUCH_FORMAT_TEXT0 },
659                               { 0, 0 } } },
660     { NOTMUCH_OPT_INT, &notmuch_format_version, "format-version", 0, 0 },
661     { NOTMUCH_OPT_KEYWORD, &search_context.exclude, "exclude", 'x',
662       (notmuch_keyword_t []){ { "true", NOTMUCH_EXCLUDE_TRUE },
663                               { "false", NOTMUCH_EXCLUDE_FALSE },
664                               { "flag", NOTMUCH_EXCLUDE_FLAG },
665                               { "all", NOTMUCH_EXCLUDE_ALL },
666                               { 0, 0 } } },
667     { 0, 0, 0, 0, 0 }
668 };
669
670 int
671 notmuch_search_command (notmuch_config_t *config, int argc, char *argv[])
672 {
673     search_context_t *ctx = &search_context;
674     int opt_index, ret;
675
676     notmuch_opt_desc_t options[] = {
677         { NOTMUCH_OPT_KEYWORD, &ctx->output, "output", 'o',
678           (notmuch_keyword_t []){ { "summary", OUTPUT_SUMMARY },
679                                   { "threads", OUTPUT_THREADS },
680                                   { "messages", OUTPUT_MESSAGES },
681                                   { "files", OUTPUT_FILES },
682                                   { "tags", OUTPUT_TAGS },
683                                   { 0, 0 } } },
684         { NOTMUCH_OPT_INT, &ctx->offset, "offset", 'O', 0 },
685         { NOTMUCH_OPT_INT, &ctx->limit, "limit", 'L', 0  },
686         { NOTMUCH_OPT_INT, &ctx->dupe, "duplicate", 'D', 0  },
687         { NOTMUCH_OPT_INHERIT, &common_options, NULL, 0, 0 },
688         { 0, 0, 0, 0, 0 }
689     };
690
691     ctx->output = OUTPUT_SUMMARY;
692     opt_index = parse_arguments (argc, argv, options, 1);
693     if (opt_index < 0)
694         return EXIT_FAILURE;
695
696     if (_notmuch_search_prepare (ctx, config,
697                                  argc - opt_index, argv + opt_index))
698         return EXIT_FAILURE;
699
700     switch (ctx->output) {
701     case OUTPUT_SUMMARY:
702     case OUTPUT_THREADS:
703         ret = do_search_threads (ctx);
704         break;
705     case OUTPUT_MESSAGES:
706     case OUTPUT_FILES:
707         ret = do_search_messages (ctx);
708         break;
709     case OUTPUT_TAGS:
710         ret = do_search_tags (ctx);
711         break;
712     default:
713         INTERNAL_ERROR ("Unexpected output");
714     }
715
716     _notmuch_search_cleanup (ctx);
717
718     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
719 }
720
721 int
722 notmuch_address_command (notmuch_config_t *config, int argc, char *argv[])
723 {
724     search_context_t *ctx = &search_context;
725     int opt_index, ret;
726
727     notmuch_opt_desc_t options[] = {
728         { NOTMUCH_OPT_KEYWORD_FLAGS, &ctx->output, "output", 'o',
729           (notmuch_keyword_t []){ { "sender", OUTPUT_SENDER },
730                                   { "recipients", OUTPUT_RECIPIENTS },
731                                   { "count", OUTPUT_COUNT },
732                                   { 0, 0 } } },
733         { NOTMUCH_OPT_KEYWORD, &ctx->filter_by, "filter-by", 'b',
734           (notmuch_keyword_t []){ { "nameaddr", FILTER_BY_NAMEADDR },
735                                   { "name", FILTER_BY_NAME },
736                                   { "addr", FILTER_BY_ADDR },
737                                   { "addrfold", FILTER_BY_ADDRFOLD },
738                                   { "nameaddrfold", FILTER_BY_NAMEADDRFOLD },
739                                   { 0, 0 } } },
740         { NOTMUCH_OPT_INHERIT, &common_options, NULL, 0, 0 },
741         { 0, 0, 0, 0, 0 }
742     };
743
744     ctx->filter_by = FILTER_BY_NAMEADDR,
745     opt_index = parse_arguments (argc, argv, options, 1);
746     if (opt_index < 0)
747         return EXIT_FAILURE;
748
749     if (! ctx->output)
750         search_context.output = OUTPUT_SENDER | OUTPUT_RECIPIENTS;
751
752     if (_notmuch_search_prepare (ctx, config,
753                                  argc - opt_index, argv + opt_index))
754         return EXIT_FAILURE;
755
756     ctx->addresses = g_hash_table_new_full (g_str_hash, g_str_equal,
757                                             _my_talloc_free_for_g_hash, _my_talloc_free_for_g_hash);
758
759     ret = do_search_messages (ctx);
760
761     g_hash_table_unref (ctx->addresses);
762
763
764     _notmuch_search_cleanup (ctx);
765
766     return ret ? EXIT_FAILURE : EXIT_SUCCESS;
767 }