]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
notmuch.el: Make notmuch-show buffer name first subject, instead of thread-id (supers...
[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
26 static void
27 reply_part_content (GMimeObject *part)
28 {
29     GMimeStream *stream_stdout = NULL, *stream_filter = NULL;
30     GMimeDataWrapper *wrapper;
31     const char *charset;
32
33     charset = g_mime_object_get_content_type_parameter (part, "charset");
34     stream_stdout = g_mime_stream_file_new (stdout);
35     if (stream_stdout) {
36         g_mime_stream_file_set_owner (GMIME_STREAM_FILE (stream_stdout), FALSE);
37         stream_filter = g_mime_stream_filter_new(stream_stdout);
38         if (charset) {
39           g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
40                                    g_mime_filter_charset_new(charset, "UTF-8"));
41         }
42     }
43     g_mime_stream_filter_add(GMIME_STREAM_FILTER(stream_filter),
44                              g_mime_filter_reply_new(TRUE));
45     wrapper = g_mime_part_get_content_object (GMIME_PART (part));
46     if (wrapper && stream_filter)
47         g_mime_data_wrapper_write_to_stream (wrapper, stream_filter);
48     if (stream_filter)
49         g_object_unref(stream_filter);
50     if (stream_stdout)
51         g_object_unref(stream_stdout);
52 }
53
54 static void
55 reply_part (GMimeObject *part, int *part_count)
56 {
57     GMimeContentDisposition *disposition;
58     GMimeContentType *content_type;
59
60     (void) part_count;
61     disposition = g_mime_object_get_content_disposition (part);
62     if (disposition &&
63         strcmp (disposition->disposition, GMIME_DISPOSITION_ATTACHMENT) == 0)
64     {
65         const char *filename = g_mime_part_get_filename (GMIME_PART (part));
66         content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
67
68         if (g_mime_content_type_is_type (content_type, "text", "*") &&
69             !g_mime_content_type_is_type (content_type, "text", "html"))
70         {
71             reply_part_content (part);
72         }
73         else
74         {
75             printf ("Attachment: %s (%s)\n", filename,
76                     g_mime_content_type_to_string (content_type));
77         }
78
79         return;
80     }
81
82     content_type = g_mime_object_get_content_type (GMIME_OBJECT (part));
83
84     if (g_mime_content_type_is_type (content_type, "text", "*") &&
85         !g_mime_content_type_is_type (content_type, "text", "html"))
86     {
87         reply_part_content (part);
88     }
89     else
90     {
91         printf ("Non-text part: %s\n",
92                 g_mime_content_type_to_string (content_type));
93     }
94 }
95
96 /* Is the given address configured as one of the user's "personal" or
97  * "other" addresses. */
98 static int
99 address_is_users (const char *address, notmuch_config_t *config)
100 {
101     const char *primary;
102     char **other;
103     size_t i, other_len;
104
105     primary = notmuch_config_get_user_primary_email (config);
106     if (strcasecmp (primary, address) == 0)
107         return 1;
108
109     other = notmuch_config_get_user_other_email (config, &other_len);
110     for (i = 0; i < other_len; i++)
111         if (strcasecmp (other[i], address) == 0)
112             return 1;
113
114     return 0;
115 }
116
117 /* For each address in 'list' that is not configured as one of the
118  * user's addresses in 'config', add that address to 'message' as an
119  * address of 'type'.
120  *
121  * The first address encountered that *is* the user's address will be
122  * returned, (otherwise NULL is returned).
123  */
124 static const char *
125 add_recipients_for_address_list (GMimeMessage *message,
126                                  notmuch_config_t *config,
127                                  GMimeRecipientType type,
128                                  InternetAddressList *list)
129 {
130     InternetAddress *address;
131     int i;
132     const char *ret = NULL;
133
134     for (i = 0; i < internet_address_list_length (list); i++) {
135         address = internet_address_list_get_address (list, i);
136         if (INTERNET_ADDRESS_IS_GROUP (address)) {
137             InternetAddressGroup *group;
138             InternetAddressList *group_list;
139
140             group = INTERNET_ADDRESS_GROUP (address);
141             group_list = internet_address_group_get_members (group);
142             if (group_list == NULL)
143                 continue;
144
145             add_recipients_for_address_list (message, config,
146                                              type, group_list);
147         } else {
148             InternetAddressMailbox *mailbox;
149             const char *name;
150             const char *addr;
151
152             mailbox = INTERNET_ADDRESS_MAILBOX (address);
153
154             name = internet_address_get_name (address);
155             addr = internet_address_mailbox_get_addr (mailbox);
156
157             if (address_is_users (addr, config)) {
158                 if (ret == NULL)
159                     ret = addr;
160             } else {
161                 g_mime_message_add_recipient (message, type, name, addr);
162             }
163         }
164     }
165
166     return ret;
167 }
168
169 /* For each address in 'recipients' that is not configured as one of
170  * the user's addresses in 'config', add that address to 'message' as
171  * an address of 'type'.
172  *
173  * The first address encountered that *is* the user's address will be
174  * returned, (otherwise NULL is returned).
175  */
176 static const char *
177 add_recipients_for_string (GMimeMessage *message,
178                            notmuch_config_t *config,
179                            GMimeRecipientType type,
180                            const char *recipients)
181 {
182     InternetAddressList *list;
183
184     list = internet_address_list_parse_string (recipients);
185     if (list == NULL)
186         return NULL;
187
188     return add_recipients_for_address_list (message, config, type, list);
189 }
190
191 /* Does the address in the Reply-To header of 'message' already appear
192  * in either the 'To' or 'Cc' header of the message?
193  */
194 static int
195 reply_to_header_is_redundant (notmuch_message_t *message)
196 {
197     const char *header, *addr;
198     InternetAddressList *list;
199     InternetAddress *address;
200     InternetAddressMailbox *mailbox;
201
202     header = notmuch_message_get_header (message, "reply-to");
203     if (*header == '\0')
204         return 0;
205
206     list = internet_address_list_parse_string (header);
207
208     if (internet_address_list_length (list) != 1)
209         return 0;
210
211     address = internet_address_list_get_address (list, 0);
212     if (INTERNET_ADDRESS_IS_GROUP (address))
213         return 0;
214
215     mailbox = INTERNET_ADDRESS_MAILBOX (address);
216     addr = internet_address_mailbox_get_addr (mailbox);
217
218     if (strstr (notmuch_message_get_header (message, "to"), addr) != 0 ||
219         strstr (notmuch_message_get_header (message, "cc"), addr) != 0)
220     {
221         return 1;
222     }
223
224     return 0;
225 }
226
227 /* Augments the recipients of reply from the headers of message.
228  *
229  * If any of the user's addresses were found in these headers, the first
230  * of these returned, otherwise NULL is returned.
231  */
232 static const char *
233 add_recipients_from_message (GMimeMessage *reply,
234                              notmuch_config_t *config,
235                              notmuch_message_t *message)
236 {
237     struct {
238         const char *header;
239         const char *fallback;
240         GMimeRecipientType recipient_type;
241     } reply_to_map[] = {
242         { "reply-to", "from", GMIME_RECIPIENT_TYPE_TO  },
243         { "to",         NULL, GMIME_RECIPIENT_TYPE_TO  },
244         { "cc",         NULL, GMIME_RECIPIENT_TYPE_CC  },
245         { "bcc",        NULL, GMIME_RECIPIENT_TYPE_BCC }
246     };
247     const char *from_addr = NULL;
248     unsigned int i;
249
250     /* Some mailing lists munge the Reply-To header despite it being A Bad
251      * Thing, see http://www.unicom.com/pw/reply-to-harmful.html
252      *
253      * The munging is easy to detect, because it results in a
254      * redundant reply-to header, (with an address that already exists
255      * in either To or Cc). So in this case, we ignore the Reply-To
256      * field and use the From header. Thie ensures the original sender
257      * will get the reply even if not subscribed to the list. Note
258      * that the address in the Reply-To header will always appear in
259      * the reply.
260      */
261     if (reply_to_header_is_redundant (message)) {
262         reply_to_map[0].header = "from";
263         reply_to_map[0].fallback = NULL;
264     }
265
266     for (i = 0; i < ARRAY_SIZE (reply_to_map); i++) {
267         const char *addr, *recipients;
268
269         recipients = notmuch_message_get_header (message,
270                                                  reply_to_map[i].header);
271         if ((recipients == NULL || recipients[0] == '\0') && reply_to_map[i].fallback)
272             recipients = notmuch_message_get_header (message,
273                                                      reply_to_map[i].fallback);
274
275         addr = add_recipients_for_string (reply, config,
276                                           reply_to_map[i].recipient_type,
277                                           recipients);
278         if (from_addr == NULL)
279             from_addr = addr;
280     }
281
282     return from_addr;
283 }
284
285 static const char *
286 guess_from_received_header (notmuch_config_t *config, notmuch_message_t *message)
287 {
288     const char *received,*primary;
289     char **other;
290     char *by,*mta,*ptr,*token;
291     char *domain=NULL;
292     char *tld=NULL;
293     const char *delim=". \t";
294     size_t i,other_len;
295
296     received = notmuch_message_get_header (message, "received");
297     by = strstr (received, " by ");
298     if (by && *(by+4)) {
299         /* we know that there are 4 characters after by - either the 4th one
300          * is '\0' (broken header) or it is the first letter of the hostname 
301          * that last received this email - which we'll use to guess the right
302          * from email address
303          */
304         mta = strdup (by+4);
305         if (mta == NULL)
306             return NULL;
307
308         /* After the MTA comes its IP address (or HELO response) in parenthesis.
309          * so let's terminate the string there
310          */
311         if ((ptr = strchr (mta, '(')) == NULL) {
312             free (mta);
313             return NULL;
314         }
315         *ptr = '\0';
316
317         /* Now extract the last two components of the MTA host name
318          * as domain and tld
319          */
320         token = mta;
321         while ((ptr = strsep (&token, delim)) != NULL) {
322             if (*ptr == '\0')
323                 continue;
324             domain = tld;
325             tld = ptr;
326         }
327
328         if (domain) {
329             /* recombine domain and tld and look for it among the configured
330              * email addresses
331              */
332             *(tld-1) = '.';
333             primary = notmuch_config_get_user_primary_email (config);
334             if (strcasestr (primary, domain)) {
335                 free (mta);
336                 return primary;
337             }
338             other = notmuch_config_get_user_other_email (config, &other_len);
339             for (i = 0; i < other_len; i++)
340                 if (strcasestr (other[i], domain)) {
341                     free (mta);
342                     return other[i];
343                 }
344         }
345
346         free (mta);
347     }
348
349     return NULL;
350 }
351
352 static int
353 notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
354 {
355     GMimeMessage *reply;
356     notmuch_messages_t *messages;
357     notmuch_message_t *message;
358     const char *subject, *from_addr = NULL;
359     const char *in_reply_to, *orig_references, *references;
360     char *reply_headers;
361
362     for (messages = notmuch_query_search_messages (query);
363          notmuch_messages_valid (messages);
364          notmuch_messages_move_to_next (messages))
365     {
366         message = notmuch_messages_get (messages);
367
368         /* The 1 means we want headers in a "pretty" order. */
369         reply = g_mime_message_new (1);
370         if (reply == NULL) {
371             fprintf (stderr, "Out of memory\n");
372             return 1;
373         }
374
375         subject = notmuch_message_get_header (message, "subject");
376
377         if (strncasecmp (subject, "Re:", 3))
378             subject = talloc_asprintf (ctx, "Re: %s", subject);
379         g_mime_message_set_subject (reply, subject);
380
381         from_addr = add_recipients_from_message (reply, config, message);
382
383         if (from_addr == NULL)
384             from_addr = guess_from_received_header (config, message);
385
386         if (from_addr == NULL)
387             from_addr = notmuch_config_get_user_primary_email (config);
388
389         from_addr = talloc_asprintf (ctx, "%s <%s>",
390                                      notmuch_config_get_user_name (config),
391                                      from_addr);
392         g_mime_object_set_header (GMIME_OBJECT (reply),
393                                   "From", from_addr);
394
395         g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
396                            notmuch_config_get_user_primary_email (config));
397
398         in_reply_to = talloc_asprintf (ctx, "<%s>",
399                              notmuch_message_get_message_id (message));
400
401         g_mime_object_set_header (GMIME_OBJECT (reply),
402                                   "In-Reply-To", in_reply_to);
403
404         orig_references = notmuch_message_get_header (message, "references");
405         references = talloc_asprintf (ctx, "%s%s%s",
406                                       orig_references ? orig_references : "",
407                                       orig_references ? " " : "",
408                                       in_reply_to);
409         g_mime_object_set_header (GMIME_OBJECT (reply),
410                                   "References", references);
411
412         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
413         printf ("%s", reply_headers);
414         free (reply_headers);
415
416         g_object_unref (G_OBJECT (reply));
417         reply = NULL;
418
419         printf ("On %s, %s wrote:\n",
420                 notmuch_message_get_header (message, "date"),
421                 notmuch_message_get_header (message, "from"));
422
423         show_message_body (notmuch_message_get_filename (message), reply_part);
424
425         notmuch_message_destroy (message);
426     }
427     return 0;
428 }
429
430 /* This format is currently tuned for a git send-email --notmuch hook */
431 static int
432 notmuch_reply_format_headers_only(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
433 {
434     GMimeMessage *reply;
435     notmuch_messages_t *messages;
436     notmuch_message_t *message;
437     const char *in_reply_to, *orig_references, *references;
438     char *reply_headers;
439
440     for (messages = notmuch_query_search_messages (query);
441          notmuch_messages_valid (messages);
442          notmuch_messages_move_to_next (messages))
443     {
444         message = notmuch_messages_get (messages);
445
446         /* The 0 means we do not want headers in a "pretty" order. */
447         reply = g_mime_message_new (0);
448         if (reply == NULL) {
449             fprintf (stderr, "Out of memory\n");
450             return 1;
451         }
452
453         in_reply_to = talloc_asprintf (ctx, "<%s>",
454                              notmuch_message_get_message_id (message));
455
456         g_mime_object_set_header (GMIME_OBJECT (reply),
457                                   "In-Reply-To", in_reply_to);
458
459
460         orig_references = notmuch_message_get_header (message, "references");
461
462         /* We print In-Reply-To followed by References because git format-patch treats them
463          * specially.  Git does not interpret the other headers specially
464          */
465         references = talloc_asprintf (ctx, "%s%s%s",
466                                       orig_references ? orig_references : "",
467                                       orig_references ? " " : "",
468                                       in_reply_to);
469         g_mime_object_set_header (GMIME_OBJECT (reply),
470                                   "References", references);
471
472         (void)add_recipients_from_message (reply, config, message);
473
474         g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
475                            notmuch_config_get_user_primary_email (config));
476
477         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
478         printf ("%s", reply_headers);
479         free (reply_headers);
480
481         g_object_unref (G_OBJECT (reply));
482         reply = NULL;
483
484         notmuch_message_destroy (message);
485     }
486     return 0;
487 }
488
489 int
490 notmuch_reply_command (void *ctx, int argc, char *argv[])
491 {
492     notmuch_config_t *config;
493     notmuch_database_t *notmuch;
494     notmuch_query_t *query;
495     char *opt, *query_string;
496     int i, ret = 0;
497     int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query);
498
499     reply_format_func = notmuch_reply_format_default;
500
501     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
502         if (strcmp (argv[i], "--") == 0) {
503             i++;
504             break;
505         }
506         if (STRNCMP_LITERAL (argv[i], "--format=") == 0) {
507             opt = argv[i] + sizeof ("--format=") - 1;
508             if (strcmp (opt, "default") == 0) {
509                 reply_format_func = notmuch_reply_format_default;
510             } else if (strcmp (opt, "headers-only") == 0) {
511                 reply_format_func = notmuch_reply_format_headers_only;
512             } else {
513                 fprintf (stderr, "Invalid value for --format: %s\n", opt);
514                 return 1;
515             }
516         } else {
517             fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
518             return 1;
519         }
520     }
521
522     argc -= i;
523     argv += i;
524
525     config = notmuch_config_open (ctx, NULL, NULL);
526     if (config == NULL)
527         return 1;
528
529     query_string = query_string_from_args (ctx, argc, argv);
530     if (query_string == NULL) {
531         fprintf (stderr, "Out of memory\n");
532         return 1;
533     }
534
535     if (*query_string == '\0') {
536         fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
537         return 1;
538     }
539
540     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
541                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
542     if (notmuch == NULL)
543         return 1;
544
545     query = notmuch_query_create (notmuch, query_string);
546     if (query == NULL) {
547         fprintf (stderr, "Out of memory\n");
548         return 1;
549     }
550
551     if (reply_format_func (ctx, config, query) != 0)
552         return 1;
553
554     notmuch_query_destroy (query);
555     notmuch_database_close (notmuch);
556
557     return ret;
558 }