1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
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.
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.
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/ .
18 * Author: Carl Worth <cworth@cworth.org>
21 #include "notmuch-client.h"
24 format_message_text (unused (const void *ctx),
25 notmuch_message_t *message,
28 format_headers_text (const void *ctx,
29 notmuch_message_t *message);
32 format_headers_message_part_text (GMimeMessage *message);
35 format_part_start_text (GMimeObject *part,
39 format_part_content_text (GMimeObject *part);
42 format_part_end_text (GMimeObject *part);
44 static const notmuch_show_format_t format_text = {
46 "\fmessage{ ", format_message_text,
47 "\fheader{\n", format_headers_text, format_headers_message_part_text, "\fheader}\n",
49 format_part_start_text,
52 format_part_content_text,
61 format_message_json (const void *ctx,
62 notmuch_message_t *message,
65 format_headers_json (const void *ctx,
66 notmuch_message_t *message);
69 format_headers_message_part_json (GMimeMessage *message);
72 format_part_start_json (unused (GMimeObject *part),
76 format_part_encstatus_json (int status);
79 format_part_sigstatus_json (const GMimeSignatureValidity* validity);
82 format_part_content_json (GMimeObject *part);
85 format_part_end_json (GMimeObject *part);
87 static const notmuch_show_format_t format_json = {
89 "{", format_message_json,
90 "\"headers\": {", format_headers_json, format_headers_message_part_json, "}",
92 format_part_start_json,
93 format_part_encstatus_json,
94 format_part_sigstatus_json,
95 format_part_content_json,
104 format_message_mbox (const void *ctx,
105 notmuch_message_t *message,
106 unused (int indent));
108 static const notmuch_show_format_t format_mbox = {
110 "", format_message_mbox,
125 format_part_content_raw (GMimeObject *part);
127 static const notmuch_show_format_t format_raw = {
130 "", NULL, format_headers_message_part_text, "\n",
135 format_part_content_raw,
144 _get_tags_as_string (const void *ctx, notmuch_message_t *message)
146 notmuch_tags_t *tags;
151 result = talloc_strdup (ctx, "");
155 for (tags = notmuch_message_get_tags (message);
156 notmuch_tags_valid (tags);
157 notmuch_tags_move_to_next (tags))
159 tag = notmuch_tags_get (tags);
161 result = talloc_asprintf_append (result, "%s%s",
162 first ? "" : " ", tag);
169 /* Get a nice, single-line summary of message. */
171 _get_one_line_summary (const void *ctx, notmuch_message_t *message)
175 const char *relative_date;
178 from = notmuch_message_get_header (message, "from");
180 date = notmuch_message_get_date (message);
181 relative_date = notmuch_time_relative_date (ctx, date);
183 tags = _get_tags_as_string (ctx, message);
185 return talloc_asprintf (ctx, "%s (%s) (%s)",
186 from, relative_date, tags);
190 format_message_text (unused (const void *ctx), notmuch_message_t *message, int indent)
192 printf ("id:%s depth:%d match:%d filename:%s\n",
193 notmuch_message_get_message_id (message),
195 notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH),
196 notmuch_message_get_filename (message));
200 format_message_json (const void *ctx, notmuch_message_t *message, unused (int indent))
202 notmuch_tags_t *tags;
204 void *ctx_quote = talloc_new (ctx);
206 const char *relative_date;
208 date = notmuch_message_get_date (message);
209 relative_date = notmuch_time_relative_date (ctx, date);
211 printf ("\"id\": %s, \"match\": %s, \"filename\": %s, \"timestamp\": %ld, \"date_relative\": \"%s\", \"tags\": [",
212 json_quote_str (ctx_quote, notmuch_message_get_message_id (message)),
213 notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH) ? "true" : "false",
214 json_quote_str (ctx_quote, notmuch_message_get_filename (message)),
215 date, relative_date);
217 for (tags = notmuch_message_get_tags (message);
218 notmuch_tags_valid (tags);
219 notmuch_tags_move_to_next (tags))
221 printf("%s%s", first ? "" : ",",
222 json_quote_str (ctx_quote, notmuch_tags_get (tags)));
226 talloc_free (ctx_quote);
229 /* Extract just the email address from the contents of a From:
232 _extract_email_address (const void *ctx, const char *from)
234 InternetAddressList *addresses;
235 InternetAddress *address;
236 InternetAddressMailbox *mailbox;
237 const char *email = "MAILER-DAEMON";
239 addresses = internet_address_list_parse_string (from);
241 /* Bail if there is no address here. */
242 if (addresses == NULL || internet_address_list_length (addresses) < 1)
245 /* Otherwise, just use the first address. */
246 address = internet_address_list_get_address (addresses, 0);
248 /* The From header should never contain an address group rather
249 * than a mailbox. So bail if it does. */
250 if (! INTERNET_ADDRESS_IS_MAILBOX (address))
253 mailbox = INTERNET_ADDRESS_MAILBOX (address);
254 email = internet_address_mailbox_get_addr (mailbox);
255 email = talloc_strdup (ctx, email);
258 /* XXX: How to free addresses here? */
262 /* Return 1 if 'line' is an mbox From_ line---that is, a line
263 * beginning with zero or more '>' characters followed by the
264 * characters 'F', 'r', 'o', 'm', and space.
266 * Any characters at all may appear after that in the line.
269 _is_from_line (const char *line)
271 const char *s = line;
279 if (STRNCMP_LITERAL (s, "From ") == 0)
285 /* Print a message in "mboxrd" format as documented, for example,
288 * http://qmail.org/qmail-manual-html/man5/mbox.html
291 format_message_mbox (const void *ctx,
292 notmuch_message_t *message,
295 const char *filename;
300 struct tm date_gmtime;
301 char date_asctime[26];
307 filename = notmuch_message_get_filename (message);
308 file = fopen (filename, "r");
310 fprintf (stderr, "Failed to open %s: %s\n",
311 filename, strerror (errno));
315 from = notmuch_message_get_header (message, "from");
316 from = _extract_email_address (ctx, from);
318 date = notmuch_message_get_date (message);
319 gmtime_r (&date, &date_gmtime);
320 asctime_r (&date_gmtime, date_asctime);
322 printf ("From %s %s", from, date_asctime);
324 while ((line_len = getline (&line, &line_size, file)) != -1 ) {
325 if (_is_from_line (line))
337 format_headers_text (const void *ctx, notmuch_message_t *message)
339 const char *headers[] = {
340 "Subject", "From", "To", "Cc", "Bcc", "Date"
342 const char *name, *value;
345 printf ("%s\n", _get_one_line_summary (ctx, message));
347 for (i = 0; i < ARRAY_SIZE (headers); i++) {
349 value = notmuch_message_get_header (message, name);
350 if (value && strlen (value))
351 printf ("%s: %s\n", name, value);
356 format_headers_message_part_text (GMimeMessage *message)
358 InternetAddressList *recipients;
359 const char *recipients_string;
361 printf ("From: %s\n", g_mime_message_get_sender (message));
362 recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
363 recipients_string = internet_address_list_to_string (recipients, 0);
364 if (recipients_string)
367 recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
368 recipients_string = internet_address_list_to_string (recipients, 0);
369 if (recipients_string)
372 printf ("Subject: %s\n", g_mime_message_get_subject (message));
373 printf ("Date: %s\n", g_mime_message_get_date_as_string (message));
377 format_headers_json (const void *ctx, notmuch_message_t *message)
379 const char *headers[] = {
380 "Subject", "From", "To", "Cc", "Bcc", "Date"
382 const char *name, *value;
384 int first_header = 1;
385 void *ctx_quote = talloc_new (ctx);
387 for (i = 0; i < ARRAY_SIZE (headers); i++) {
389 value = notmuch_message_get_header (message, name);
393 fputs (", ", stdout);
397 json_quote_str (ctx_quote, name),
398 json_quote_str (ctx_quote, value));
402 talloc_free (ctx_quote);
406 format_headers_message_part_json (GMimeMessage *message)
408 void *ctx = talloc_new (NULL);
409 void *ctx_quote = talloc_new (ctx);
410 InternetAddressList *recipients;
411 const char *recipients_string;
414 json_quote_str (ctx_quote, "From"),
415 json_quote_str (ctx_quote, g_mime_message_get_sender (message)));
416 recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_TO);
417 recipients_string = internet_address_list_to_string (recipients, 0);
418 if (recipients_string)
420 json_quote_str (ctx_quote, "To"),
421 json_quote_str (ctx_quote, recipients_string));
422 recipients = g_mime_message_get_recipients (message, GMIME_RECIPIENT_TYPE_CC);
423 recipients_string = internet_address_list_to_string (recipients, 0);
424 if (recipients_string)
426 json_quote_str (ctx_quote, "Cc"),
427 json_quote_str (ctx_quote, recipients_string));
429 json_quote_str (ctx_quote, "Subject"),
430 json_quote_str (ctx_quote, g_mime_message_get_subject (message)));
432 json_quote_str (ctx_quote, "Date"),
433 json_quote_str (ctx_quote, g_mime_message_get_date_as_string (message)));
435 talloc_free (ctx_quote);
439 /* Write a MIME text part out to the given stream.
441 * Both line-ending conversion (CRLF->LF) and charset conversion ( ->
442 * UTF-8) will be performed, so it is inappropriate to call this
443 * function with a non-text part. Doing so will trigger an internal
447 show_text_part_content (GMimeObject *part, GMimeStream *stream_out)
449 GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
450 GMimeStream *stream_filter = NULL;
451 GMimeDataWrapper *wrapper;
454 if (! g_mime_content_type_is_type (content_type, "text", "*"))
455 INTERNAL_ERROR ("Illegal request to format non-text part (%s) as text.",
456 g_mime_content_type_to_string (content_type));
458 if (stream_out == NULL)
461 stream_filter = g_mime_stream_filter_new (stream_out);
462 g_mime_stream_filter_add(GMIME_STREAM_FILTER (stream_filter),
463 g_mime_filter_crlf_new (FALSE, FALSE));
465 charset = g_mime_object_get_content_type_parameter (part, "charset");
467 GMimeFilter *charset_filter;
468 charset_filter = g_mime_filter_charset_new (charset, "UTF-8");
469 /* This result can be NULL for things like "unknown-8bit".
470 * Don't set a NULL filter as that makes GMime print
471 * annoying assertion-failure messages on stderr. */
473 g_mime_stream_filter_add (GMIME_STREAM_FILTER (stream_filter),
477 wrapper = g_mime_part_get_content_object (GMIME_PART (part));
478 if (wrapper && stream_filter)
479 g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
481 g_object_unref(stream_filter);
485 signer_status_to_string (GMimeSignerStatus x)
488 case GMIME_SIGNER_STATUS_NONE:
490 case GMIME_SIGNER_STATUS_GOOD:
492 case GMIME_SIGNER_STATUS_BAD:
494 case GMIME_SIGNER_STATUS_ERROR:
501 format_part_start_text (GMimeObject *part, int *part_count)
503 GMimeContentDisposition *disposition = g_mime_object_get_content_disposition (part);
506 strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
508 printf ("\fattachment{ ID: %d", *part_count);
512 printf ("\fpart{ ID: %d", *part_count);
517 format_part_content_text (GMimeObject *part)
519 const char *cid = g_mime_object_get_content_id (part);
520 GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
522 if (GMIME_IS_PART (part))
524 const char *filename = g_mime_part_get_filename (GMIME_PART (part));
526 printf (", Filename: %s", filename);
530 printf (", Content-id: %s", cid);
532 printf (", Content-type: %s\n", g_mime_content_type_to_string (content_type));
534 if (g_mime_content_type_is_type (content_type, "text", "*") &&
535 !g_mime_content_type_is_type (content_type, "text", "html"))
537 GMimeStream *stream_stdout = g_mime_stream_file_new (stdout);
538 g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
539 show_text_part_content (part, stream_stdout);
540 g_object_unref(stream_stdout);
542 else if (g_mime_content_type_is_type (content_type, "multipart", "*") ||
543 g_mime_content_type_is_type (content_type, "message", "rfc822"))
545 /* Do nothing for multipart since its content will be printed
550 printf ("Non-text part: %s\n",
551 g_mime_content_type_to_string (content_type));
556 format_part_end_text (GMimeObject *part)
558 GMimeContentDisposition *disposition;
560 disposition = g_mime_object_get_content_disposition (part);
562 strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
564 printf ("\fattachment}\n");
568 printf ("\fpart}\n");
573 format_part_start_json (unused (GMimeObject *part), int *part_count)
575 printf ("{\"id\": %d", *part_count);
579 format_part_encstatus_json (int status)
581 printf (", \"encstatus\": [{\"status\": ");
591 format_part_sigstatus_json (const GMimeSignatureValidity* validity)
593 printf (", \"sigstatus\": [");
600 const GMimeSigner *signer = g_mime_signature_validity_get_signers (validity);
602 void *ctx_quote = talloc_new (NULL);
613 printf ("\"status\": %s",
614 json_quote_str (ctx_quote,
615 signer_status_to_string (signer->status)));
617 if (signer->status == GMIME_SIGNER_STATUS_GOOD)
619 if (signer->fingerprint)
620 printf (", \"fingerprint\": %s", json_quote_str (ctx_quote, signer->fingerprint));
621 /* these dates are seconds since the epoch; should we
622 * provide a more human-readable format string? */
624 printf (", \"created\": %d", (int) signer->created);
626 printf (", \"expires\": %d", (int) signer->expires);
627 /* output user id only if validity is FULL or ULTIMATE. */
628 /* note that gmime is using the term "trust" here, which
629 * is WRONG. It's actually user id "validity". */
630 if ((signer->name) && (signer->trust)) {
631 if ((signer->trust == GMIME_SIGNER_TRUST_FULLY) || (signer->trust == GMIME_SIGNER_TRUST_ULTIMATE))
632 printf (", \"userid\": %s", json_quote_str (ctx_quote, signer->name));
636 printf (", \"keyid\": %s", json_quote_str (ctx_quote, signer->keyid));
638 if (signer->errors != GMIME_SIGNER_ERROR_NONE) {
639 printf (", \"errors\": %x", signer->errors);
643 signer = signer->next;
648 talloc_free (ctx_quote);
652 format_part_content_json (GMimeObject *part)
654 GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
655 GMimeStream *stream_memory = g_mime_stream_mem_new ();
656 const char *cid = g_mime_object_get_content_id (part);
657 void *ctx = talloc_new (NULL);
658 GByteArray *part_content;
660 printf (", \"content-type\": %s",
661 json_quote_str (ctx, g_mime_content_type_to_string (content_type)));
664 printf(", \"content-id\": %s", json_quote_str (ctx, cid));
666 if (GMIME_IS_PART (part))
668 const char *filename = g_mime_part_get_filename (GMIME_PART (part));
670 printf (", \"filename\": %s", json_quote_str (ctx, filename));
673 if (g_mime_content_type_is_type (content_type, "text", "*") &&
674 !g_mime_content_type_is_type (content_type, "text", "html"))
676 show_text_part_content (part, stream_memory);
677 part_content = g_mime_stream_mem_get_byte_array (GMIME_STREAM_MEM (stream_memory));
679 printf (", \"content\": %s", json_quote_chararray (ctx, (char *) part_content->data, part_content->len));
681 else if (g_mime_content_type_is_type (content_type, "multipart", "*"))
683 printf (", \"content\": [");
685 else if (g_mime_content_type_is_type (content_type, "message", "rfc822"))
687 printf (", \"content\": [{");
692 g_object_unref (stream_memory);
696 format_part_end_json (GMimeObject *part)
698 GMimeContentType *content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
700 if (g_mime_content_type_is_type (content_type, "multipart", "*"))
702 else if (g_mime_content_type_is_type (content_type, "message", "rfc822"))
709 format_part_content_raw (GMimeObject *part)
711 if (! GMIME_IS_PART (part))
714 GMimeStream *stream_stdout;
715 GMimeStream *stream_filter = NULL;
716 GMimeDataWrapper *wrapper;
718 stream_stdout = g_mime_stream_file_new (stdout);
719 g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
721 stream_filter = g_mime_stream_filter_new (stream_stdout);
723 wrapper = g_mime_part_get_content_object (GMIME_PART (part));
725 if (wrapper && stream_filter)
726 g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
729 g_object_unref (stream_filter);
732 g_object_unref(stream_stdout);
736 show_message (void *ctx,
737 const notmuch_show_format_t *format,
738 notmuch_message_t *message,
740 notmuch_show_params_t *params)
742 if (params->part <= 0) {
743 fputs (format->message_start, stdout);
745 format->message(ctx, message, indent);
747 fputs (format->header_start, stdout);
749 format->header(ctx, message);
750 fputs (format->header_end, stdout);
752 fputs (format->body_start, stdout);
755 if (format->part_content)
756 show_message_body (notmuch_message_get_filename (message),
759 if (params->part <= 0) {
760 fputs (format->body_end, stdout);
762 fputs (format->message_end, stdout);
767 show_messages (void *ctx,
768 const notmuch_show_format_t *format,
769 notmuch_messages_t *messages,
771 notmuch_show_params_t *params)
773 notmuch_message_t *message;
774 notmuch_bool_t match;
778 fputs (format->message_set_start, stdout);
781 notmuch_messages_valid (messages);
782 notmuch_messages_move_to_next (messages))
785 fputs (format->message_set_sep, stdout);
788 fputs (format->message_set_start, stdout);
790 message = notmuch_messages_get (messages);
792 match = notmuch_message_get_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH);
794 next_indent = indent;
796 if (match || params->entire_thread) {
797 show_message (ctx, format, message, indent, params);
798 next_indent = indent + 1;
800 fputs (format->message_set_sep, stdout);
805 notmuch_message_get_replies (message),
809 notmuch_message_destroy (message);
811 fputs (format->message_set_end, stdout);
814 fputs (format->message_set_end, stdout);
817 /* Formatted output of single message */
819 do_show_single (void *ctx,
820 notmuch_query_t *query,
821 const notmuch_show_format_t *format,
822 notmuch_show_params_t *params)
824 notmuch_messages_t *messages;
825 notmuch_message_t *message;
827 if (notmuch_query_count_messages (query) != 1) {
828 fprintf (stderr, "Error: search term did not match precisely one message.\n");
832 messages = notmuch_query_search_messages (query);
833 message = notmuch_messages_get (messages);
835 if (message == NULL) {
836 fprintf (stderr, "Error: Cannot find matching message.\n");
840 notmuch_message_set_flag (message, NOTMUCH_MESSAGE_FLAG_MATCH, 1);
842 /* Special case for --format=raw of full single message, just cat out file */
843 if (params->raw && 0 == params->part) {
845 const char *filename;
850 filename = notmuch_message_get_filename (message);
851 if (filename == NULL) {
852 fprintf (stderr, "Error: Cannot message filename.\n");
856 file = fopen (filename, "r");
858 fprintf (stderr, "Error: Cannot open file %s: %s\n", filename, strerror (errno));
862 while (!feof (file)) {
863 size = fread (buf, 1, sizeof (buf), file);
864 fwrite (buf, size, 1, stdout);
871 show_message (ctx, format, message, 0, params);
878 /* Formatted output of threads */
881 notmuch_query_t *query,
882 const notmuch_show_format_t *format,
883 notmuch_show_params_t *params)
885 notmuch_threads_t *threads;
886 notmuch_thread_t *thread;
887 notmuch_messages_t *messages;
888 int first_toplevel = 1;
890 fputs (format->message_set_start, stdout);
892 for (threads = notmuch_query_search_threads (query);
893 notmuch_threads_valid (threads);
894 notmuch_threads_move_to_next (threads))
896 thread = notmuch_threads_get (threads);
898 messages = notmuch_thread_get_toplevel_messages (thread);
900 if (messages == NULL)
901 INTERNAL_ERROR ("Thread %s has no toplevel messages.\n",
902 notmuch_thread_get_thread_id (thread));
905 fputs (format->message_set_sep, stdout);
908 show_messages (ctx, format, messages, 0, params);
910 notmuch_thread_destroy (thread);
914 fputs (format->message_set_end, stdout);
920 notmuch_show_command (void *ctx, unused (int argc), unused (char *argv[]))
922 notmuch_config_t *config;
923 notmuch_database_t *notmuch;
924 notmuch_query_t *query;
927 const notmuch_show_format_t *format = &format_text;
928 notmuch_show_params_t params;
930 int format_specified = 0;
933 params.entire_thread = 0;
936 params.cryptoctx = NULL;
939 for (i = 0; i < argc && argv[i][0] == '-'; i++) {
940 if (strcmp (argv[i], "--") == 0) {
944 if (STRNCMP_LITERAL (argv[i], "--format=") == 0) {
945 opt = argv[i] + sizeof ("--format=") - 1;
946 if (strcmp (opt, "text") == 0) {
947 format = &format_text;
948 } else if (strcmp (opt, "json") == 0) {
949 format = &format_json;
950 params.entire_thread = 1;
951 } else if (strcmp (opt, "mbox") == 0) {
952 format = &format_mbox;
954 } else if (strcmp (opt, "raw") == 0) {
955 format = &format_raw;
958 fprintf (stderr, "Invalid value for --format: %s\n", opt);
961 format_specified = 1;
962 } else if (STRNCMP_LITERAL (argv[i], "--part=") == 0) {
963 params.part = atoi(argv[i] + sizeof ("--part=") - 1);
964 } else if (STRNCMP_LITERAL (argv[i], "--entire-thread") == 0) {
965 params.entire_thread = 1;
966 } else if ((STRNCMP_LITERAL (argv[i], "--verify") == 0) ||
967 (STRNCMP_LITERAL (argv[i], "--decrypt") == 0)) {
968 if (params.cryptoctx == NULL) {
969 GMimeSession* session = g_object_new(g_mime_session_get_type(), NULL);
970 if (NULL == (params.cryptoctx = g_mime_gpg_context_new(session, "gpg")))
971 fprintf (stderr, "Failed to construct gpg context.\n");
973 g_mime_gpg_context_set_always_trust((GMimeGpgContext*)params.cryptoctx, FALSE);
974 g_object_unref (session);
977 if (STRNCMP_LITERAL (argv[i], "--decrypt") == 0)
980 fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
988 config = notmuch_config_open (ctx, NULL, NULL);
992 query_string = query_string_from_args (ctx, argc, argv);
993 if (query_string == NULL) {
994 fprintf (stderr, "Out of memory\n");
998 if (mbox && params.part > 0) {
999 fprintf (stderr, "Error: specifying parts is incompatible with mbox output format.\n");
1003 if (*query_string == '\0') {
1004 fprintf (stderr, "Error: notmuch show requires at least one search term.\n");
1008 notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
1009 NOTMUCH_DATABASE_MODE_READ_ONLY);
1010 if (notmuch == NULL)
1013 query = notmuch_query_create (notmuch, query_string);
1014 if (query == NULL) {
1015 fprintf (stderr, "Out of memory\n");
1019 /* if part was requested and format was not specified, use format=raw */
1020 if (params.part >= 0 && !format_specified)
1021 format = &format_raw;
1023 /* If --format=raw specified without specifying part, we can only
1024 * output single message, so set part=0 */
1025 if (params.raw && params.part < 0)
1028 if (params.part >= 0)
1029 return do_show_single (ctx, query, format, ¶ms);
1031 return do_show (ctx, query, format, ¶ms);
1033 notmuch_query_destroy (query);
1034 notmuch_database_close (notmuch);
1036 if (params.cryptoctx)
1037 g_object_unref(params.cryptoctx);