1 /* notmuch - Not much of an email program, (just index and search)
3 * Copyright © 2009 Carl Worth
4 * Copyright © 2009 Keith Packard
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.
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.
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/ .
19 * Authors: Carl Worth <cworth@cworth.org>
20 * Keith Packard <keithp@keithp.com>
23 #include "notmuch-client.h"
24 #include "gmime-filter-reply.h"
25 #include "gmime-filter-headers.h"
28 reply_part_content (GMimeObject *part)
30 GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
31 GMimeDataWrapper *wrapper;
34 charset = g_mime_object_get_content_type_parameter (part, "charset");
35 stream_stdout = g_mime_stream_file_new (stdout);
37 g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
38 stream_filter = g_mime_stream_filter_new(stream_stdout);
40 g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
41 g_mime_filter_charset_new(charset, "UTF-8"));
44 g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
45 g_mime_filter_reply_new(TRUE));
46 wrapper = g_mime_part_get_content_object (GMIME_PART (part));
47 if (wrapper && stream_filter)
48 g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
50 g_object_unref(stream_filter);
52 g_object_unref(stream_stdout);
56 show_reply_headers (GMimeMessage *message)
58 GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
60 stream_stdout = g_mime_stream_file_new (stdout);
62 g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
63 stream_filter = g_mime_stream_filter_new(stream_stdout);
65 g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
66 g_mime_filter_headers_new());
67 g_mime_object_write_to_stream(GMIME_OBJECT(message), stream_filter);
68 g_object_unref(stream_filter);
70 g_object_unref(stream_stdout);
75 reply_part (GMimeObject *part, int *part_count)
77 GMimeContentDisposition *disposition;
78 GMimeContentType *content_type;
81 disposition = g_mime_object_get_content_disposition (part);
83 strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
85 const char *filename = g_mime_part_get_filename (GMIME_PART (part));
86 content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
88 if (g_mime_content_type_is_type (content_type, "text", "*") &&
89 !g_mime_content_type_is_type (content_type, "text", "html"))
91 reply_part_content (part);
95 printf ("Attachment: %s (%s)\n", filename,
96 g_mime_content_type_to_string (content_type));
102 content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
104 if (g_mime_content_type_is_type (content_type, "text", "*") &&
105 !g_mime_content_type_is_type (content_type, "text", "html"))
107 reply_part_content (part);
111 printf ("Non-text part: %s\n",
112 g_mime_content_type_to_string (content_type));
116 /* Is the given address configured as one of the user's "personal" or
117 * "other" addresses. */
119 address_is_users (const char *address, notmuch_config_t *config)
125 primary = notmuch_config_get_user_primary_email (config);
126 if (strcasecmp (primary, address) == 0)
129 other = notmuch_config_get_user_other_email (config, &other_len);
130 for (i = 0; i < other_len; i++)
131 if (strcasecmp (other[i], address) == 0)
137 /* For each address in 'list' that is not configured as one of the
138 * user's addresses in 'config', add that address to 'message' as an
141 * The first address encountered that *is* the user's address will be
142 * returned, (otherwise NULL is returned).
145 add_recipients_for_address_list (GMimeMessage *message,
146 notmuch_config_t *config,
147 GMimeRecipientType type,
148 InternetAddressList *list)
150 InternetAddress *address;
152 const char *ret = NULL;
154 for (i = 0; i < internet_address_list_length (list); i++) {
155 address = internet_address_list_get_address (list, i);
156 if (INTERNET_ADDRESS_IS_GROUP (address)) {
157 InternetAddressGroup *group;
158 InternetAddressList *group_list;
160 group = INTERNET_ADDRESS_GROUP (address);
161 group_list = internet_address_group_get_members (group);
162 if (group_list == NULL)
165 add_recipients_for_address_list (message, config,
168 InternetAddressMailbox *mailbox;
172 mailbox = INTERNET_ADDRESS_MAILBOX (address);
174 name = internet_address_get_name (address);
175 addr = internet_address_mailbox_get_addr (mailbox);
177 if (address_is_users (addr, config)) {
181 g_mime_message_add_recipient (message, type, name, addr);
189 /* For each address in 'recipients' that is not configured as one of
190 * the user's addresses in 'config', add that address to 'message' as
191 * an address of 'type'.
193 * The first address encountered that *is* the user's address will be
194 * returned, (otherwise NULL is returned).
197 add_recipients_for_string (GMimeMessage *message,
198 notmuch_config_t *config,
199 GMimeRecipientType type,
200 const char *recipients)
202 InternetAddressList *list;
204 list = internet_address_list_parse_string (recipients);
208 return add_recipients_for_address_list (message, config, type, list);
211 /* Does the address in the Reply-To header of 'message' already appear
212 * in either the 'To' or 'Cc' header of the message?
215 reply_to_header_is_redundant (notmuch_message_t *message)
217 const char *header, *addr;
218 InternetAddressList *list;
219 InternetAddress *address;
220 InternetAddressMailbox *mailbox;
222 header = notmuch_message_get_header (message, "reply-to");
226 list = internet_address_list_parse_string (header);
228 if (internet_address_list_length (list) != 1)
231 address = internet_address_list_get_address (list, 0);
232 if (INTERNET_ADDRESS_IS_GROUP (address))
235 mailbox = INTERNET_ADDRESS_MAILBOX (address);
236 addr = internet_address_mailbox_get_addr (mailbox);
238 if (strstr (notmuch_message_get_header (message, "to"), addr) != 0 ||
239 strstr (notmuch_message_get_header (message, "cc"), addr) != 0)
247 /* Augments the recipients of reply from the headers of message.
249 * If any of the user's addresses were found in these headers, the first
250 * of these returned, otherwise NULL is returned.
253 add_recipients_from_message (GMimeMessage *reply,
254 notmuch_config_t *config,
255 notmuch_message_t *message)
259 const char *fallback;
260 GMimeRecipientType recipient_type;
262 { "reply-to", "from", GMIME_RECIPIENT_TYPE_TO },
263 { "to", NULL, GMIME_RECIPIENT_TYPE_TO },
264 { "cc", NULL, GMIME_RECIPIENT_TYPE_CC },
265 { "bcc", NULL, GMIME_RECIPIENT_TYPE_BCC }
267 const char *from_addr = NULL;
270 /* Some mailing lists munge the Reply-To header despite it being A Bad
271 * Thing, see http://www.unicom.com/pw/reply-to-harmful.html
273 * The munging is easy to detect, because it results in a
274 * redundant reply-to header, (with an address that already exists
275 * in either To or Cc). So in this case, we ignore the Reply-To
276 * field and use the From header. Thie ensures the original sender
277 * will get the reply even if not subscribed to the list. Note
278 * that the address in the Reply-To header will always appear in
281 if (reply_to_header_is_redundant (message)) {
282 reply_to_map[0].header = "from";
283 reply_to_map[0].fallback = NULL;
286 for (i = 0; i < ARRAY_SIZE (reply_to_map); i++) {
287 const char *addr, *recipients;
289 recipients = notmuch_message_get_header (message,
290 reply_to_map[i].header);
291 if ((recipients == NULL || recipients[0] == '\0') && reply_to_map[i].fallback)
292 recipients = notmuch_message_get_header (message,
293 reply_to_map[i].fallback);
295 addr = add_recipients_for_string (reply, config,
296 reply_to_map[i].recipient_type,
298 if (from_addr == NULL)
306 guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
308 const char *received,*primary;
310 char *by,*mta,*ptr,*token;
313 const char *delim=". \t";
316 received = notmuch_message_get_header (message, "received");
317 by = strstr (received, " by ");
319 /* sadly, the format of Received: headers is a bit inconsistent,
320 * depending on the MTA used. So we try to extract just the MTA
321 * here by removing leading whitespace and assuming that the MTA
322 * name ends at the next whitespace
323 * we test for *(by+4) to be non-'\0' to make sure there's something
324 * there at all - and then assume that the first whitespace delimited
325 * token that follows is the last receiving server
330 token = strtok(mta," \t");
333 /* Now extract the last two components of the MTA host name
336 while ((ptr = strsep (&token, delim)) != NULL) {
344 /* recombine domain and tld and look for it among the configured
348 primary = notmuch_config_get_user_primary_email (config);
349 if (strcasestr (primary, domain)) {
353 other = notmuch_config_get_user_other_email (config, &other_len);
354 for (i = 0; i < other_len; i++)
355 if (strcasestr (other[i], domain)) {
368 notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
371 notmuch_messages_t *messages;
372 notmuch_message_t *message;
373 const char *subject, *from_addr = NULL;
374 const char *in_reply_to, *orig_references, *references;
376 for (messages = notmuch_query_search_messages (query);
377 notmuch_messages_valid (messages);
378 notmuch_messages_move_to_next (messages))
380 message = notmuch_messages_get (messages);
382 /* The 1 means we want headers in a "pretty" order. */
383 reply = g_mime_message_new (1);
385 fprintf (stderr, "Out of memory\n");
389 subject = notmuch_message_get_header (message, "subject");
390 if (strncasecmp (subject, "Re:", 3))
391 subject = talloc_asprintf (ctx, "Re: %s", subject);
392 g_mime_message_set_subject (reply, subject);
394 from_addr = add_recipients_from_message (reply, config, message);
396 if (from_addr == NULL)
397 from_addr = guess_from_received_header (config, message);
399 if (from_addr == NULL)
400 from_addr = notmuch_config_get_user_primary_email (config);
402 from_addr = talloc_asprintf (ctx, "%s <%s>",
403 notmuch_config_get_user_name (config),
405 g_mime_object_set_header (GMIME_OBJECT (reply),
408 g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
409 notmuch_config_get_user_primary_email (config));
411 in_reply_to = talloc_asprintf (ctx, "<%s>",
412 notmuch_message_get_message_id (message));
414 g_mime_object_set_header (GMIME_OBJECT (reply),
415 "In-Reply-To", in_reply_to);
417 orig_references = notmuch_message_get_header (message, "references");
418 references = talloc_asprintf (ctx, "%s%s%s",
419 orig_references ? orig_references : "",
420 orig_references ? " " : "",
422 g_mime_object_set_header (GMIME_OBJECT (reply),
423 "References", references);
425 show_reply_headers (reply);
427 g_object_unref (G_OBJECT (reply));
430 printf ("On %s, %s wrote:\n",
431 notmuch_message_get_header (message, "date"),
432 notmuch_message_get_header (message, "from"));
434 show_message_body (notmuch_message_get_filename (message), reply_part);
436 notmuch_message_destroy (message);
441 /* This format is currently tuned for a git send-email --notmuch hook */
443 notmuch_reply_format_headers_only(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
446 notmuch_messages_t *messages;
447 notmuch_message_t *message;
448 const char *in_reply_to, *orig_references, *references;
451 for (messages = notmuch_query_search_messages (query);
452 notmuch_messages_valid (messages);
453 notmuch_messages_move_to_next (messages))
455 message = notmuch_messages_get (messages);
457 /* The 0 means we do not want headers in a "pretty" order. */
458 reply = g_mime_message_new (0);
460 fprintf (stderr, "Out of memory\n");
464 in_reply_to = talloc_asprintf (ctx, "<%s>",
465 notmuch_message_get_message_id (message));
467 g_mime_object_set_header (GMIME_OBJECT (reply),
468 "In-Reply-To", in_reply_to);
471 orig_references = notmuch_message_get_header (message, "references");
473 /* We print In-Reply-To followed by References because git format-patch treats them
474 * specially. Git does not interpret the other headers specially
476 references = talloc_asprintf (ctx, "%s%s%s",
477 orig_references ? orig_references : "",
478 orig_references ? " " : "",
480 g_mime_object_set_header (GMIME_OBJECT (reply),
481 "References", references);
483 (void)add_recipients_from_message (reply, config, message);
485 g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
486 notmuch_config_get_user_primary_email (config));
488 reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
489 printf ("%s", reply_headers);
490 free (reply_headers);
492 g_object_unref (G_OBJECT (reply));
495 notmuch_message_destroy (message);
501 notmuch_reply_command (void *ctx, int argc, char *argv[])
503 notmuch_config_t *config;
504 notmuch_database_t *notmuch;
505 notmuch_query_t *query;
506 char *opt, *query_string;
508 int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query);
510 reply_format_func = notmuch_reply_format_default;
512 for (i = 0; i < argc && argv[i][0] == '-'; i++) {
513 if (strcmp (argv[i], "--") == 0) {
517 if (STRNCMP_LITERAL (argv[i], "--format=") == 0) {
518 opt = argv[i] + sizeof ("--format=") - 1;
519 if (strcmp (opt, "default") == 0) {
520 reply_format_func = notmuch_reply_format_default;
521 } else if (strcmp (opt, "headers-only") == 0) {
522 reply_format_func = notmuch_reply_format_headers_only;
524 fprintf (stderr, "Invalid value for --format: %s\n", opt);
528 fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
536 config = notmuch_config_open (ctx, NULL, NULL);
540 query_string = query_string_from_args (ctx, argc, argv);
541 if (query_string == NULL) {
542 fprintf (stderr, "Out of memory\n");
546 if (*query_string == '\0') {
547 fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
551 notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
552 NOTMUCH_DATABASE_MODE_READ_ONLY);
556 query = notmuch_query_create (notmuch, query_string);
558 fprintf (stderr, "Out of memory\n");
562 if (reply_format_func (ctx, config, query) != 0)
565 notmuch_query_destroy (query);
566 notmuch_database_close (notmuch);