]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
notmuch: Add a new "notmuch config" command for querying configuration.
[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_part_content (GMimeObject *part)
29 {
30     GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
31     GMimeDataWrapper *wrapper;
32     const char *charset;
33
34     charset = g_mime_object_get_content_type_parameter (part, "charset");
35     stream_stdout = g_mime_stream_file_new (stdout);
36     if (stream_stdout) {
37         g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
38         stream_filter = g_mime_stream_filter_new(stream_stdout);
39         if (charset) {
40           g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
41                                    g_mime_filter_charset_new(charset, "UTF-8"));
42         }
43     }
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);
49     if (stream_filter)
50         g_object_unref(stream_filter);
51     if (stream_stdout)
52         g_object_unref(stream_stdout);
53 }
54
55 static void
56 show_reply_headers (GMimeMessage *message)
57 {
58     GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
59
60     stream_stdout = g_mime_stream_file_new (stdout);
61     if (stream_stdout) {
62         g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
63         stream_filter = g_mime_stream_filter_new(stream_stdout);
64         if (stream_filter) {
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);
69         }
70         g_object_unref(stream_stdout);
71     }
72 }
73
74 static void
75 reply_part (GMimeObject *part, int *part_count)
76 {
77     GMimeContentDisposition *disposition;
78     GMimeContentType *content_type;
79
80     (void) part_count;
81     disposition = g_mime_object_get_content_disposition (part);
82     if (disposition &&
83         strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
84     {
85         const char *filename = g_mime_part_get_filename (GMIME_PART (part));
86         content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
87
88         if (g_mime_content_type_is_type (content_type, "text", "*") &&
89             !g_mime_content_type_is_type (content_type, "text", "html"))
90         {
91             reply_part_content (part);
92         }
93         else
94         {
95             printf ("Attachment: %s (%s)\n", filename,
96                     g_mime_content_type_to_string (content_type));
97         }
98
99         return;
100     }
101
102     content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
103
104     if (g_mime_content_type_is_type (content_type, "text", "*") &&
105         !g_mime_content_type_is_type (content_type, "text", "html"))
106     {
107         reply_part_content (part);
108     }
109     else
110     {
111         printf ("Non-text part: %s\n",
112                 g_mime_content_type_to_string (content_type));
113     }
114 }
115
116 /* Is the given address configured as one of the user's "personal" or
117  * "other" addresses. */
118 static int
119 address_is_users (const char *address, notmuch_config_t *config)
120 {
121     const char *primary;
122     char **other;
123     size_t i, other_len;
124
125     primary = notmuch_config_get_user_primary_email (config);
126     if (strcasecmp (primary, address) == 0)
127         return 1;
128
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)
132             return 1;
133
134     return 0;
135 }
136
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
139  * address of 'type'.
140  *
141  * The first address encountered that *is* the user's address will be
142  * returned, (otherwise NULL is returned).
143  */
144 static const char *
145 add_recipients_for_address_list (GMimeMessage *message,
146                                  notmuch_config_t *config,
147                                  GMimeRecipientType type,
148                                  InternetAddressList *list)
149 {
150     InternetAddress *address;
151     int i;
152     const char *ret = NULL;
153
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;
159
160             group = INTERNET_ADDRESS_GROUP (address);
161             group_list = internet_address_group_get_members (group);
162             if (group_list == NULL)
163                 continue;
164
165             add_recipients_for_address_list (message, config,
166                                              type, group_list);
167         } else {
168             InternetAddressMailbox *mailbox;
169             const char *name;
170             const char *addr;
171
172             mailbox = INTERNET_ADDRESS_MAILBOX (address);
173
174             name = internet_address_get_name (address);
175             addr = internet_address_mailbox_get_addr (mailbox);
176
177             if (address_is_users (addr, config)) {
178                 if (ret == NULL)
179                     ret = addr;
180             } else {
181                 g_mime_message_add_recipient (message, type, name, addr);
182             }
183         }
184     }
185
186     return ret;
187 }
188
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'.
192  *
193  * The first address encountered that *is* the user's address will be
194  * returned, (otherwise NULL is returned).
195  */
196 static const char *
197 add_recipients_for_string (GMimeMessage *message,
198                            notmuch_config_t *config,
199                            GMimeRecipientType type,
200                            const char *recipients)
201 {
202     InternetAddressList *list;
203
204     if (recipients == NULL)
205         return NULL;
206
207     list = internet_address_list_parse_string (recipients);
208     if (list == NULL)
209         return NULL;
210
211     return add_recipients_for_address_list (message, config, type, list);
212 }
213
214 /* Does the address in the Reply-To header of 'message' already appear
215  * in either the 'To' or 'Cc' header of the message?
216  */
217 static int
218 reply_to_header_is_redundant (notmuch_message_t *message)
219 {
220     const char *reply_to, *to, *cc, *addr;
221     InternetAddressList *list;
222     InternetAddress *address;
223     InternetAddressMailbox *mailbox;
224
225     reply_to = notmuch_message_get_header (message, "reply-to");
226     if (reply_to == NULL || *reply_to == '\0')
227         return 0;
228
229     list = internet_address_list_parse_string (reply_to);
230
231     if (internet_address_list_length (list) != 1)
232         return 0;
233
234     address = internet_address_list_get_address (list, 0);
235     if (INTERNET_ADDRESS_IS_GROUP (address))
236         return 0;
237
238     mailbox = INTERNET_ADDRESS_MAILBOX (address);
239     addr = internet_address_mailbox_get_addr (mailbox);
240
241     to = notmuch_message_get_header (message, "to");
242     cc = notmuch_message_get_header (message, "cc");
243
244     if ((to && strstr (to, addr) != 0) ||
245         (cc && strstr (cc, addr) != 0))
246     {
247         return 1;
248     }
249
250     return 0;
251 }
252
253 /* Augments the recipients of reply from the headers of message.
254  *
255  * If any of the user's addresses were found in these headers, the first
256  * of these returned, otherwise NULL is returned.
257  */
258 static const char *
259 add_recipients_from_message (GMimeMessage *reply,
260                              notmuch_config_t *config,
261                              notmuch_message_t *message)
262 {
263     struct {
264         const char *header;
265         const char *fallback;
266         GMimeRecipientType recipient_type;
267     } reply_to_map[] = {
268         { "reply-to", "from", GMIME_RECIPIENT_TYPE_TO  },
269         { "to",         NULL, GMIME_RECIPIENT_TYPE_TO  },
270         { "cc",         NULL, GMIME_RECIPIENT_TYPE_CC  },
271         { "bcc",        NULL, GMIME_RECIPIENT_TYPE_BCC }
272     };
273     const char *from_addr = NULL;
274     unsigned int i;
275
276     /* Some mailing lists munge the Reply-To header despite it being A Bad
277      * Thing, see http://www.unicom.com/pw/reply-to-harmful.html
278      *
279      * The munging is easy to detect, because it results in a
280      * redundant reply-to header, (with an address that already exists
281      * in either To or Cc). So in this case, we ignore the Reply-To
282      * field and use the From header. Thie ensures the original sender
283      * will get the reply even if not subscribed to the list. Note
284      * that the address in the Reply-To header will always appear in
285      * the reply.
286      */
287     if (reply_to_header_is_redundant (message)) {
288         reply_to_map[0].header = "from";
289         reply_to_map[0].fallback = NULL;
290     }
291
292     for (i = 0; i < ARRAY_SIZE (reply_to_map); i++) {
293         const char *addr, *recipients;
294
295         recipients = notmuch_message_get_header (message,
296                                                  reply_to_map[i].header);
297         if ((recipients == NULL || recipients[0] == '\0') && reply_to_map[i].fallback)
298             recipients = notmuch_message_get_header (message,
299                                                      reply_to_map[i].fallback);
300
301         addr = add_recipients_for_string (reply, config,
302                                           reply_to_map[i].recipient_type,
303                                           recipients);
304         if (from_addr == NULL)
305             from_addr = addr;
306     }
307
308     return from_addr;
309 }
310
311 static const char *
312 guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
313 {
314     const char *received,*primary,*by;
315     char **other,*tohdr;
316     char *mta,*ptr,*token;
317     char *domain=NULL;
318     char *tld=NULL;
319     const char *delim=". \t";
320     size_t i,j,other_len;
321
322     const char *to_headers[] = {"Envelope-to", "X-Original-To"};
323
324     primary = notmuch_config_get_user_primary_email (config);
325     other = notmuch_config_get_user_other_email (config, &other_len);
326
327     /* sadly, there is no standard way to find out to which email
328      * address a mail was delivered - what is in the headers depends
329      * on the MTAs used along the way. So we are trying a number of
330      * heuristics which hopefully will answer this question.
331
332      * We only got here if none of the users email addresses are in
333      * the To: or Cc: header. From here we try the following in order:
334      * 1) check for an Envelope-to: header
335      * 2) check for an X-Original-To: header
336      * 3) check for a (for <email@add.res>) clause in Received: headers
337      * 4) check for the domain part of known email addresses in the
338      *    'by' part of Received headers
339      * If none of these work, we give up and return NULL
340      */
341     for (i = 0; i < sizeof(to_headers)/sizeof(*to_headers); i++) {
342         tohdr = xstrdup(notmuch_message_get_header (message, to_headers[i]));
343         if (tohdr && *tohdr) {
344             /* tohdr is potentialy a list of email addresses, so here we
345              * check if one of the email addresses is a substring of tohdr
346              */
347             if (strcasestr(tohdr, primary)) {
348                 free(tohdr);
349                 return primary;
350             }
351             for (j = 0; j < other_len; j++)
352                 if (strcasestr (tohdr, other[j])) {
353                     free(tohdr);
354                     return other[j];
355                 }
356             free(tohdr);
357         }
358     }
359
360     /* We get the concatenated Received: headers and search from the
361      * front (last Received: header added) and try to extract from
362      * them indications to which email address this message was
363      * delivered.
364      * The Received: header is special in our get_header function
365      * and is always concated.
366      */
367     received = notmuch_message_get_header (message, "received");
368     if (received == NULL)
369         return NULL;
370
371     /* First we look for a " for <email@add.res>" in the received
372      * header
373      */
374     ptr = strstr (received, " for ");
375     if (ptr) {
376         /* the text following is potentialy a list of email addresses,
377          * so again we check if one of the email addresses is a
378          * substring of ptr
379          */
380         if (strcasestr(ptr, primary)) {
381             return primary;
382         }
383         for (i = 0; i < other_len; i++)
384             if (strcasestr (ptr, other[i])) {
385                 return other[i];
386             }
387     }
388     /* Finally, we parse all the " by MTA ..." headers to guess the
389      * email address that this was originally delivered to.
390      * We extract just the MTA here by removing leading whitespace and
391      * assuming that the MTA name ends at the next whitespace.
392      * We test for *(by+4) to be non-'\0' to make sure there's
393      * something there at all - and then assume that the first
394      * whitespace delimited token that follows is the receiving
395      * system in this step of the receive chain
396      */
397     by = received;
398     while((by = strstr (by, " by ")) != NULL) {
399         by += 4;
400         if (*by == '\0')
401             break;
402         mta = xstrdup (by);
403         token = strtok(mta," \t");
404         if (token == NULL)
405             break;
406         /* Now extract the last two components of the MTA host name
407          * as domain and tld.
408          */
409         while ((ptr = strsep (&token, delim)) != NULL) {
410             if (*ptr == '\0')
411                 continue;
412             domain = tld;
413             tld = ptr;
414         }
415
416         if (domain) {
417             /* Recombine domain and tld and look for it among the configured
418              * email addresses.
419              * This time we have a known domain name and nothing else - so
420              * the test is the other way around: we check if this is a
421              * substring of one of the email addresses.
422              */
423             *(tld-1) = '.';
424
425             if (strcasestr(primary, domain)) {
426                 free(mta);
427             return primary;
428         }
429         for (i = 0; i < other_len; i++)
430             if (strcasestr (other[i],domain)) {
431                 free(mta);
432                 return other[i];
433             }
434         }
435         free (mta);
436     }
437
438     return NULL;
439 }
440
441 static int
442 notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
443 {
444     GMimeMessage *reply;
445     notmuch_messages_t *messages;
446     notmuch_message_t *message;
447     const char *subject, *from_addr = NULL;
448     const char *in_reply_to, *orig_references, *references;
449
450     for (messages = notmuch_query_search_messages (query);
451          notmuch_messages_valid (messages);
452          notmuch_messages_move_to_next (messages))
453     {
454         message = notmuch_messages_get (messages);
455
456         /* The 1 means we want headers in a "pretty" order. */
457         reply = g_mime_message_new (1);
458         if (reply == NULL) {
459             fprintf (stderr, "Out of memory\n");
460             return 1;
461         }
462
463         subject = notmuch_message_get_header (message, "subject");
464         if (subject) {
465             if (strncasecmp (subject, "Re:", 3))
466                 subject = talloc_asprintf (ctx, "Re: %s", subject);
467             g_mime_message_set_subject (reply, subject);
468         }
469
470         from_addr = add_recipients_from_message (reply, config, message);
471
472         if (from_addr == NULL)
473             from_addr = guess_from_received_header (config, message);
474
475         if (from_addr == NULL)
476             from_addr = notmuch_config_get_user_primary_email (config);
477
478         from_addr = talloc_asprintf (ctx, "%s <%s>",
479                                      notmuch_config_get_user_name (config),
480                                      from_addr);
481         g_mime_object_set_header (GMIME_OBJECT (reply),
482                                   "From", from_addr);
483
484         g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
485                            notmuch_config_get_user_primary_email (config));
486
487         in_reply_to = talloc_asprintf (ctx, "<%s>",
488                              notmuch_message_get_message_id (message));
489
490         g_mime_object_set_header (GMIME_OBJECT (reply),
491                                   "In-Reply-To", in_reply_to);
492
493         orig_references = notmuch_message_get_header (message, "references");
494         references = talloc_asprintf (ctx, "%s%s%s",
495                                       orig_references ? orig_references : "",
496                                       orig_references ? " " : "",
497                                       in_reply_to);
498         g_mime_object_set_header (GMIME_OBJECT (reply),
499                                   "References", references);
500
501         show_reply_headers (reply);
502
503         g_object_unref (G_OBJECT (reply));
504         reply = NULL;
505
506         printf ("On %s, %s wrote:\n",
507                 notmuch_message_get_header (message, "date"),
508                 notmuch_message_get_header (message, "from"));
509
510         show_message_body (notmuch_message_get_filename (message), reply_part);
511
512         notmuch_message_destroy (message);
513     }
514     return 0;
515 }
516
517 /* This format is currently tuned for a git send-email --notmuch hook */
518 static int
519 notmuch_reply_format_headers_only(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
520 {
521     GMimeMessage *reply;
522     notmuch_messages_t *messages;
523     notmuch_message_t *message;
524     const char *in_reply_to, *orig_references, *references;
525     char *reply_headers;
526
527     for (messages = notmuch_query_search_messages (query);
528          notmuch_messages_valid (messages);
529          notmuch_messages_move_to_next (messages))
530     {
531         message = notmuch_messages_get (messages);
532
533         /* The 0 means we do not want headers in a "pretty" order. */
534         reply = g_mime_message_new (0);
535         if (reply == NULL) {
536             fprintf (stderr, "Out of memory\n");
537             return 1;
538         }
539
540         in_reply_to = talloc_asprintf (ctx, "<%s>",
541                              notmuch_message_get_message_id (message));
542
543         g_mime_object_set_header (GMIME_OBJECT (reply),
544                                   "In-Reply-To", in_reply_to);
545
546
547         orig_references = notmuch_message_get_header (message, "references");
548
549         /* We print In-Reply-To followed by References because git format-patch treats them
550          * specially.  Git does not interpret the other headers specially
551          */
552         references = talloc_asprintf (ctx, "%s%s%s",
553                                       orig_references ? orig_references : "",
554                                       orig_references ? " " : "",
555                                       in_reply_to);
556         g_mime_object_set_header (GMIME_OBJECT (reply),
557                                   "References", references);
558
559         (void)add_recipients_from_message (reply, config, message);
560
561         g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
562                            notmuch_config_get_user_primary_email (config));
563
564         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
565         printf ("%s", reply_headers);
566         free (reply_headers);
567
568         g_object_unref (G_OBJECT (reply));
569         reply = NULL;
570
571         notmuch_message_destroy (message);
572     }
573     return 0;
574 }
575
576 int
577 notmuch_reply_command (void *ctx, int argc, char *argv[])
578 {
579     notmuch_config_t *config;
580     notmuch_database_t *notmuch;
581     notmuch_query_t *query;
582     char *opt, *query_string;
583     int i, ret = 0;
584     int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query);
585
586     reply_format_func = notmuch_reply_format_default;
587
588     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
589         if (strcmp (argv[i], "--") == 0) {
590             i++;
591             break;
592         }
593         if (STRNCMP_LITERAL (argv[i], "--format=") == 0) {
594             opt = argv[i] + sizeof ("--format=") - 1;
595             if (strcmp (opt, "default") == 0) {
596                 reply_format_func = notmuch_reply_format_default;
597             } else if (strcmp (opt, "headers-only") == 0) {
598                 reply_format_func = notmuch_reply_format_headers_only;
599             } else {
600                 fprintf (stderr, "Invalid value for --format: %s\n", opt);
601                 return 1;
602             }
603         } else {
604             fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
605             return 1;
606         }
607     }
608
609     argc -= i;
610     argv += i;
611
612     config = notmuch_config_open (ctx, NULL, NULL);
613     if (config == NULL)
614         return 1;
615
616     query_string = query_string_from_args (ctx, argc, argv);
617     if (query_string == NULL) {
618         fprintf (stderr, "Out of memory\n");
619         return 1;
620     }
621
622     if (*query_string == '\0') {
623         fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
624         return 1;
625     }
626
627     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
628                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
629     if (notmuch == NULL)
630         return 1;
631
632     query = notmuch_query_create (notmuch, query_string);
633     if (query == NULL) {
634         fprintf (stderr, "Out of memory\n");
635         return 1;
636     }
637
638     if (reply_format_func (ctx, config, query) != 0)
639         return 1;
640
641     notmuch_query_destroy (query);
642     notmuch_database_close (notmuch);
643
644     return ret;
645 }