]> git.notmuchmail.org Git - notmuch/blob - notmuch-reply.c
guess From address from Received headers
[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
286 static const char *
287 guess_from_received_header(notmuch_config_t *config, notmuch_message_t *message)
288 {
289     const char *received,*primary;
290     char **other;
291     char *by,*mta,*ptr,*token;
292     char *domain=NULL;
293     char *tld=NULL;
294     const char *delim=". \t";
295     size_t i,other_len;
296
297     received = notmuch_message_get_header (message, "received");
298     by = strstr(received," by ");
299     if (by && *(by+4)) {
300         /* we know that there are 4 characters after by - either the 4th one
301          * is '\0' (broken header) or it is the first letter of the hostname 
302          * that last received this email - which we'll use to guess the right
303          * from email address
304          */
305         mta = strdup(by+4);
306         if (mta == NULL)
307             return NULL;
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         /* Now extract the last two components of the MTA host name
317          * as domain and tld
318          */
319         token = mta;
320         while ((ptr = strsep(&token,delim)) != NULL) {
321             if (*ptr == '\0')
322                 continue;
323             domain = tld;
324             tld = ptr;
325         }
326         if (domain) {
327             /* recombine domain and tld and look for it among the configured
328              * email addresses
329              */
330             *(tld-1) = '.';
331             primary = notmuch_config_get_user_primary_email (config);
332             if (strcasestr (primary, domain)) {
333                 free(mta);
334                 return primary;
335             }
336             other = notmuch_config_get_user_other_email (config, &other_len);
337             for (i = 0; i < other_len; i++)
338                 if (strcasestr (other[i], domain)) {
339                     free(mta);
340                     return other[i];
341                 }
342         }
343         free(mta);
344     }
345     return NULL;
346 }
347
348 static int
349 notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
350 {
351     GMimeMessage *reply;
352     notmuch_messages_t *messages;
353     notmuch_message_t *message;
354     const char *subject, *from_addr = NULL;
355     const char *in_reply_to, *orig_references, *references;
356     char *reply_headers;
357
358     for (messages = notmuch_query_search_messages (query);
359          notmuch_messages_valid (messages);
360          notmuch_messages_move_to_next (messages))
361     {
362         message = notmuch_messages_get (messages);
363
364         /* The 1 means we want headers in a "pretty" order. */
365         reply = g_mime_message_new (1);
366         if (reply == NULL) {
367             fprintf (stderr, "Out of memory\n");
368             return 1;
369         }
370
371         subject = notmuch_message_get_header (message, "subject");
372
373         if (strncasecmp (subject, "Re:", 3))
374             subject = talloc_asprintf (ctx, "Re: %s", subject);
375         g_mime_message_set_subject (reply, subject);
376
377         from_addr = add_recipients_from_message (reply, config, message);
378         
379         if (from_addr == NULL) {
380             from_addr = guess_from_received_header (config, message);
381             if (from_addr == NULL) {
382                 from_addr = notmuch_config_get_user_primary_email (config);
383             }
384         }
385
386         from_addr = talloc_asprintf (ctx, "%s <%s>",
387                                      notmuch_config_get_user_name (config),
388                                      from_addr);
389         g_mime_object_set_header (GMIME_OBJECT (reply),
390                                   "From", from_addr);
391
392         g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
393                            notmuch_config_get_user_primary_email (config));
394
395         in_reply_to = talloc_asprintf (ctx, "<%s>",
396                              notmuch_message_get_message_id (message));
397
398         g_mime_object_set_header (GMIME_OBJECT (reply),
399                                   "In-Reply-To", in_reply_to);
400
401         orig_references = notmuch_message_get_header (message, "references");
402         references = talloc_asprintf (ctx, "%s%s%s",
403                                       orig_references ? orig_references : "",
404                                       orig_references ? " " : "",
405                                       in_reply_to);
406         g_mime_object_set_header (GMIME_OBJECT (reply),
407                                   "References", references);
408
409         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
410         printf ("%s", reply_headers);
411         free (reply_headers);
412
413         g_object_unref (G_OBJECT (reply));
414         reply = NULL;
415
416         printf ("On %s, %s wrote:\n",
417                 notmuch_message_get_header (message, "date"),
418                 notmuch_message_get_header (message, "from"));
419
420         show_message_body (notmuch_message_get_filename (message), reply_part);
421
422         notmuch_message_destroy (message);
423     }
424     return 0;
425 }
426
427 /* This format is currently tuned for a git send-email --notmuch hook */
428 static int
429 notmuch_reply_format_headers_only(void *ctx, notmuch_config_t *config, notmuch_query_t *query)
430 {
431     GMimeMessage *reply;
432     notmuch_messages_t *messages;
433     notmuch_message_t *message;
434     const char *in_reply_to, *orig_references, *references;
435     char *reply_headers;
436
437     for (messages = notmuch_query_search_messages (query);
438          notmuch_messages_valid (messages);
439          notmuch_messages_move_to_next (messages))
440     {
441         message = notmuch_messages_get (messages);
442
443         /* The 0 means we do not want headers in a "pretty" order. */
444         reply = g_mime_message_new (0);
445         if (reply == NULL) {
446             fprintf (stderr, "Out of memory\n");
447             return 1;
448         }
449
450         in_reply_to = talloc_asprintf (ctx, "<%s>",
451                              notmuch_message_get_message_id (message));
452
453         g_mime_object_set_header (GMIME_OBJECT (reply),
454                                   "In-Reply-To", in_reply_to);
455
456
457         orig_references = notmuch_message_get_header (message, "references");
458
459         /* We print In-Reply-To followed by References because git format-patch treats them
460          * specially.  Git does not interpret the other headers specially
461          */
462         references = talloc_asprintf (ctx, "%s%s%s",
463                                       orig_references ? orig_references : "",
464                                       orig_references ? " " : "",
465                                       in_reply_to);
466         g_mime_object_set_header (GMIME_OBJECT (reply),
467                                   "References", references);
468
469         (void)add_recipients_from_message (reply, config, message);
470
471         g_mime_object_set_header (GMIME_OBJECT (reply), "Bcc",
472                            notmuch_config_get_user_primary_email (config));
473
474         reply_headers = g_mime_object_to_string (GMIME_OBJECT (reply));
475         printf ("%s", reply_headers);
476         free (reply_headers);
477
478         g_object_unref (G_OBJECT (reply));
479         reply = NULL;
480
481         notmuch_message_destroy (message);
482     }
483     return 0;
484 }
485
486 int
487 notmuch_reply_command (void *ctx, int argc, char *argv[])
488 {
489     notmuch_config_t *config;
490     notmuch_database_t *notmuch;
491     notmuch_query_t *query;
492     char *opt, *query_string;
493     int i, ret = 0;
494     int (*reply_format_func)(void *ctx, notmuch_config_t *config, notmuch_query_t *query);
495
496     reply_format_func = notmuch_reply_format_default;
497
498     for (i = 0; i < argc && argv[i][0] == '-'; i++) {
499         if (strcmp (argv[i], "--") == 0) {
500             i++;
501             break;
502         }
503         if (STRNCMP_LITERAL (argv[i], "--format=") == 0) {
504             opt = argv[i] + sizeof ("--format=") - 1;
505             if (strcmp (opt, "default") == 0) {
506                 reply_format_func = notmuch_reply_format_default;
507             } else if (strcmp (opt, "headers-only") == 0) {
508                 reply_format_func = notmuch_reply_format_headers_only;
509             } else {
510                 fprintf (stderr, "Invalid value for --format: %s\n", opt);
511                 return 1;
512             }
513         } else {
514             fprintf (stderr, "Unrecognized option: %s\n", argv[i]);
515             return 1;
516         }
517     }
518
519     argc -= i;
520     argv += i;
521
522     config = notmuch_config_open (ctx, NULL, NULL);
523     if (config == NULL)
524         return 1;
525
526     query_string = query_string_from_args (ctx, argc, argv);
527     if (query_string == NULL) {
528         fprintf (stderr, "Out of memory\n");
529         return 1;
530     }
531
532     if (*query_string == '\0') {
533         fprintf (stderr, "Error: notmuch reply requires at least one search term.\n");
534         return 1;
535     }
536
537     notmuch = notmuch_database_open (notmuch_config_get_database_path (config),
538                                      NOTMUCH_DATABASE_MODE_READ_ONLY);
539     if (notmuch == NULL)
540         return 1;
541
542     query = notmuch_query_create (notmuch, query_string);
543     if (query == NULL) {
544         fprintf (stderr, "Out of memory\n");
545         return 1;
546     }
547
548     if (reply_format_func (ctx, config, query) != 0)
549         return 1;
550
551     notmuch_query_destroy (query);
552     notmuch_database_close (notmuch);
553
554     return ret;
555 }