3f940f7b8034528ccabf78d0ce031e7907fc4ea1
[mmh] / uip / forw.c
1 /*
2 ** forw.c -- forward a message, or group of messages.
3 **
4 ** This code is Copyright (c) 2002, by the authors of nmh.  See the
5 ** COPYRIGHT file in the root directory of the nmh distribution for
6 ** complete copyright information.
7 */
8
9 #include <h/mh.h>
10 #include <fcntl.h>
11 #include <h/fmt_scan.h>
12 #include <h/tws.h>
13 #include <h/utils.h>
14
15
16 #define IFORMAT  "digest-issue-%s"
17 #define VFORMAT  "digest-volume-%s"
18
19 static struct swit switches[] = {
20 #define ANNOSW  0
21         { "annotate", 0 },
22 #define NANNOSW  1
23         { "noannotate", 0 },
24 #define EDITRSW  2
25         { "editor editor", 0 },
26 #define NEDITSW  3
27         { "noedit", 0 },
28 #define FILTSW  4
29         { "filter filterfile", 0 },
30 #define FORMSW  5
31         { "form formfile", 0 },
32 #define FRMTSW  6
33         { "format", 5 },
34 #define NFRMTSW  7
35         { "noformat", 7 },
36 #define INPLSW  8
37         { "inplace", 0 },
38 #define NINPLSW  9
39         { "noinplace", 0 },
40 #define MIMESW  10
41         { "mime", 0 },
42 #define NMIMESW  11
43         { "nomime", 0 },
44 #define DGSTSW  12
45         { "digest list", 0 },
46 #define ISSUESW  13
47         { "issue number", 0 },
48 #define VOLUMSW  14
49         { "volume number", 0 },
50 #define WHATSW  15
51         { "whatnowproc program", 0 },
52 #define NWHATSW  16
53         { "nowhatnowproc", 0 },
54 #define BITSTUFFSW  17
55         { "dashstuffing", 0 },  /* interface to mhl */
56 #define NBITSTUFFSW  18
57         { "nodashstuffing", 0 },
58 #define VERSIONSW  19
59         { "version", 0 },
60 #define HELPSW  20
61         { "help", 0 },
62 #define FILESW  21
63         { "file file", 4 },  /* interface from msh */
64
65 #ifdef MHE
66 #define BILDSW  22
67         { "build", 5 },  /* interface from mhe */
68 #endif /* MHE */
69
70         { NULL, 0 }
71 };
72
73 static char drft[BUFSIZ];
74
75 static char delim3[] =
76         "\n------------------------------------------------------------\n\n";
77 static char delim4[] = "\n------------------------------\n\n";
78
79
80 static struct msgs *mp = NULL;  /* used a lot */
81
82
83 /*
84 ** static prototypes
85 */
86 static void mhl_draft(int, char *, int, int, char *, char *, int);
87 static void copy_draft(int, char *, char *, int, int, int);
88 static void copy_mime_draft(int);
89 static int build_form(char *, char *, int, int);
90
91
92 int
93 main(int argc, char **argv)
94 {
95         int msgp = 0, anot = 0, inplace = 1, mime = 0;
96         int issue = 0, volume = 0, dashstuff = 0;
97         int nedit = 0, nwhat = 0, in;
98         int out, msgnum;
99         char *cp, *cwd, *maildir;
100         char *digest = NULL, *ed = NULL;
101         char *file = NULL, *filter = NULL, *folder = NULL;
102         char *form = NULL, buf[BUFSIZ], value[10];
103         char **argp, **arguments, *msgs[MAXARGS];
104
105 #ifdef MHE
106         int buildsw = 0;
107 #endif /* MHE */
108
109 #ifdef LOCALE
110         setlocale(LC_ALL, "");
111 #endif
112         invo_name = mhbasename(argv[0]);
113
114         /* read user profile/context */
115         context_read();
116
117         arguments = getarguments(invo_name, argc, argv, 1);
118         argp = arguments;
119
120         while ((cp = *argp++)) {
121                 if (*cp == '-') {
122                         switch (smatch(++cp, switches)) {
123                                 case AMBIGSW:
124                                         ambigsw(cp, switches);
125                                         done(1);
126                                 case UNKWNSW:
127                                         adios(NULL, "-%s unknown", cp);
128
129                                 case HELPSW:
130                                         snprintf(buf, sizeof(buf), "%s [+folder] [msgs] [switches]", invo_name);
131                                         print_help(buf, switches, 1);
132                                         done(1);
133                                 case VERSIONSW:
134                                         print_version(invo_name);
135                                         done(1);
136
137                                 case ANNOSW:
138                                         anot++;
139                                         continue;
140                                 case NANNOSW:
141                                         anot = 0;
142                                         continue;
143
144                                 case EDITRSW:
145                                         if (!(ed = *argp++) || *ed == '-')
146                                                 adios(NULL, "missing argument to %s", argp[-2]);
147                                         nedit = 0;
148                                         continue;
149                                 case NEDITSW:
150                                         nedit++;
151                                         continue;
152
153                                 case WHATSW:
154                                         if (!(whatnowproc = *argp++) || *whatnowproc == '-')
155                                                 adios(NULL, "missing argument to %s", argp[-2]);
156                                         nwhat = 0;
157                                         continue;
158 #ifdef MHE
159                                 case BILDSW:
160                                         buildsw++;  /* fall... */
161 #endif /* MHE */
162                                 case NWHATSW:
163                                         nwhat++;
164                                         continue;
165
166                                 case FILESW:
167                                         if (file)
168                                                 adios(NULL, "only one file at a time!");
169                                         if (!(cp = *argp++) || *cp == '-')
170                                                 adios(NULL, "missing argument to %s", argp[-2]);
171                                         file = getcpy(expanddir(cp));
172                                         continue;
173                                 case FILTSW:
174                                         if (!(cp = *argp++) || *cp == '-')
175                                                 adios(NULL, "missing argument to %s", argp[-2]);
176                                         filter = getcpy(etcpath(cp));
177                                         mime = 0;
178                                         continue;
179                                 case FORMSW:
180                                         if (!(form = *argp++) || *form == '-')
181                                                 adios(NULL, "missing argument to %s", argp[-2]);
182                                         continue;
183
184                                 case FRMTSW:
185                                         filter = getcpy(etcpath(mhlforward));
186                                         continue;
187                                 case NFRMTSW:
188                                         filter = NULL;
189                                         continue;
190
191                                 case INPLSW:
192                                         inplace++;
193                                         continue;
194                                 case NINPLSW:
195                                         inplace = 0;
196                                         continue;
197
198                                 case MIMESW:
199                                         mime++;
200                                         filter = NULL;
201                                         continue;
202                                 case NMIMESW:
203                                         mime = 0;
204                                         continue;
205
206                                 case DGSTSW:
207                                         if (!(digest = *argp++) || *digest == '-')
208                                                 adios(NULL, "missing argument to %s", argp[-2]);
209                                         mime = 0;
210                                         continue;
211                                 case ISSUESW:
212                                         if (!(cp = *argp++) || *cp == '-')
213                                                 adios(NULL, "missing argument to %s", argp[-2]);
214                                         if ((issue = atoi(cp)) < 1)
215                                                 adios(NULL, "bad argument %s %s", argp[-2], cp);
216                                         continue;
217                                 case VOLUMSW:
218                                         if (!(cp = *argp++) || *cp == '-')
219                                                 adios(NULL, "missing argument to %s", argp[-2]);
220                                         if ((volume = atoi(cp)) < 1)
221                                                 adios(NULL, "bad argument %s %s", argp[-2], cp);
222                                         continue;
223
224                                 case BITSTUFFSW:
225                                         dashstuff = 1;  /* trinary logic */
226                                         continue;
227                                 case NBITSTUFFSW:
228                                         dashstuff = -1;  /* trinary logic */
229                                         continue;
230                         }
231                 }
232                 if (*cp == '+' || *cp == '@') {
233                         if (folder)
234                                 adios(NULL, "only one folder at a time!");
235                         else
236                                 folder = getcpy(expandfol(cp));
237                 } else {
238                         msgs[msgp++] = cp;
239                 }
240         }
241
242         cwd = getcpy(pwd());
243
244         if (file && (msgp || folder))
245                 adios(NULL, "can't mix files and folders/msgs");
246
247 #ifdef MHE
248         strncpy(drft, buildsw ? toabsdir("draft")
249                 : m_draft("new"), sizeof(drft));
250 #else
251         strncpy(drft, m_draft("new"), sizeof(drft));
252 #endif /* MHE */
253
254         if (file) {
255                 /*
256                 ** Forwarding a file.
257                 */
258                 anot = 0;  /* don't want to annotate a file */
259         } else {
260                 /*
261                 ** Forwarding a message.
262                 */
263                 if (!msgp)
264                         msgs[msgp++] = "cur";
265                 if (!folder)
266                         folder = getcurfol();
267                 maildir = toabsdir(folder);
268
269                 if (chdir(maildir) == NOTOK)
270                         adios(maildir, "unable to change directory to");
271
272                 /* read folder and create message structure */
273                 if (!(mp = folder_read(folder)))
274                         adios(NULL, "unable to read folder %s", folder);
275
276                 /* check for empty folder */
277                 if (mp->nummsg == 0)
278                         adios(NULL, "no messages in %s", folder);
279
280                 /* parse all the message ranges/sequences and set SELECTED */
281                 for (msgnum = 0; msgnum < msgp; msgnum++)
282                         if (!m_convert(mp, msgs[msgnum]))
283                                 done(1);
284                 seq_setprev(mp);  /* set the previous sequence */
285         }
286
287         if (filter && access(filter, R_OK) == NOTOK)
288                 adios(filter, "unable to read");
289
290         /*
291         ** Open form (component) file.
292         */
293         if (digest) {
294                 if (issue == 0) {
295                         snprintf(buf, sizeof(buf), IFORMAT, digest);
296                         if (volume == 0 && (cp = context_find(buf))
297                                         && ((issue = atoi(cp)) < 0))
298                                 issue = 0;
299                         issue++;
300                 }
301                 if (volume == 0)
302                         snprintf(buf, sizeof(buf), VFORMAT, digest);
303                 if ((cp = context_find(buf)) == NULL ||
304                                 (volume = atoi(cp)) <= 0)
305                         volume = 1;
306                 if (!form)
307                         form = digestcomps;
308                 in = build_form(form, digest, volume, issue);
309         } else
310                 in = open_form(&form, forwcomps);
311
312         if ((out = creat(drft, m_gmprot())) == NOTOK)
313                 adios(drft, "unable to create");
314
315         /*
316         ** copy the components into the draft
317         */
318         cpydata(in, out, form, drft);
319         close(in);
320
321         if (file) {
322                 /* just copy the file into the draft */
323                 if ((in = open(file, O_RDONLY)) == NOTOK)
324                         adios(file, "unable to open");
325                 cpydata(in, out, file, drft);
326                 close(in);
327                 close(out);
328         } else {
329                 /*
330                 ** If filter file is defined, then format the
331                 ** messages into the draft using mhlproc.
332                 */
333                 if (filter)
334                         mhl_draft(out, digest, volume, issue, drft, filter,
335                                         dashstuff);
336                 else if (mime)
337                         copy_mime_draft(out);
338                 else
339                         copy_draft(out, digest, drft, volume, issue,
340                                         dashstuff);
341                 close(out);
342
343                 if (digest) {
344                         snprintf(buf, sizeof(buf), IFORMAT, digest);
345                         snprintf(value, sizeof(value), "%d", issue);
346                         context_replace(buf, getcpy(value));
347                         snprintf(buf, sizeof(buf), VFORMAT, digest);
348                         snprintf(value, sizeof(value), "%d", volume);
349                         context_replace(buf, getcpy(value));
350                 }
351
352                 context_replace(pfolder, folder);  /* update current folder */
353                 seq_setcur(mp, mp->lowsel);  /* update current message */
354                 seq_save(mp);  /* synchronize sequences */
355                 context_save();  /* save the context file */
356         }
357
358         if (nwhat)
359                 done(0);
360         what_now(ed, nedit, NOUSE, drft, NULL, 0, mp,
361                 anot ? "Forwarded" : NULL, inplace, cwd);
362         done(1);
363         return 1;
364 }
365
366
367 /*
368 ** Filter the messages you are forwarding, into the
369 ** draft calling the mhlproc, and reading its output
370 ** from a pipe.
371 */
372
373 static void
374 mhl_draft(int out, char *digest, int volume, int issue,
375         char *file, char *filter, int dashstuff)
376 {
377         pid_t child_id;
378         int i, msgnum, pd[2];
379         char *vec[MAXARGS];
380         char buf1[BUFSIZ];
381         char buf2[BUFSIZ];
382
383         if (pipe(pd) == NOTOK)
384                 adios("pipe", "unable to create");
385
386         vec[0] = mhbasename(mhlproc);
387
388         for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++)
389                 sleep(5);
390         switch (child_id) {
391                 case NOTOK:
392                         adios("fork", "unable to");
393
394                 case OK:
395                         close(pd[0]);
396                         dup2(pd[1], 1);
397                         close(pd[1]);
398
399                         i = 1;
400                         vec[i++] = "-forwall";
401                         vec[i++] = "-form";
402                         vec[i++] = filter;
403
404                         if (digest) {
405                                 vec[i++] = "-digest";
406                                 vec[i++] = digest;
407                                 vec[i++] = "-issue";
408                                 snprintf(buf1, sizeof(buf1), "%d", issue);
409                                 vec[i++] = buf1;
410                                 vec[i++] = "-volume";
411                                 snprintf(buf2, sizeof(buf2), "%d", volume);
412                                 vec[i++] = buf2;
413                         }
414
415                         /*
416                         ** Are we dashstuffing (quoting) the lines that begin
417                         ** with `-'.  We use the mhl default (don't add any
418                         ** flag) unless the user has specified a specific flag.
419                         */
420                         if (dashstuff > 0)
421                                 vec[i++] = "-dashstuffing";
422                         else if (dashstuff < 0)
423                                 vec[i++] = "-nodashstuffing";
424
425                         if (mp->numsel >= MAXARGS - i)
426                                 adios(NULL, "more than %d messages for %s exec", MAXARGS - i, vec[0]);
427
428                         /*
429                         ** Now add the message names to filter.  We can only
430                         ** handle about 995 messages (because vec is fixed
431                         ** size), but that should be plenty.
432                         */
433                         for (msgnum = mp->lowsel;
434                                         msgnum <= mp->hghsel && i < sizeof(vec) - 1;
435                                         msgnum++)
436                                 if (is_selected(mp, msgnum))
437                                         vec[i++] = getcpy(m_name(msgnum));
438                         vec[i] = NULL;
439
440                         execvp(mhlproc, vec);
441                         fprintf(stderr, "unable to exec ");
442                         perror(mhlproc);
443                         _exit(-1);
444
445                 default:
446                         close(pd[1]);
447                         cpydata(pd[0], out, vec[0], file);
448                         close(pd[0]);
449                         pidXwait(child_id, mhlproc);
450                         break;
451         }
452 }
453
454
455 /*
456 ** Copy the messages into the draft.  The messages are
457 ** not filtered through the mhlproc.  Do dashstuffing if
458 ** necessary.
459 */
460
461 static void
462 copy_draft(int out, char *digest, char *file, int volume, int issue,
463                 int dashstuff)
464 {
465         int fd,i, msgcnt, msgnum;
466         int len, buflen;
467         register char *bp, *msgnam;
468         char buffer[BUFSIZ];
469
470         msgcnt = 1;
471         for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
472                 if (is_selected(mp, msgnum)) {
473                         if (digest) {
474                                 strncpy(buffer, msgnum == mp->lowsel ?
475                                         delim3 : delim4, sizeof(buffer));
476                         } else {
477                                 /* Get buffer ready to go */
478                                 bp = buffer;
479                                 buflen = sizeof(buffer);
480
481                                 strncpy(bp, "\n-------", buflen);
482                                 len = strlen(bp);
483                                 bp += len;
484                                 buflen -= len;
485
486                                 if (msgnum == mp->lowsel) {
487                                         snprintf(bp, buflen, " Forwarded Message%s", mp->numsel > 1 ? "s" : "");
488                                 } else {
489                                         snprintf(bp, buflen, " Message %d", msgcnt);
490                                 }
491                                 len = strlen(bp);
492                                 bp += len;
493                                 buflen -= len;
494
495                                 strncpy(bp, "\n\n", buflen);
496                         }
497                         write(out, buffer, strlen(buffer));
498
499                         if ((fd = open(msgnam = m_name (msgnum), O_RDONLY))
500                                         == NOTOK) {
501                                 admonish(msgnam, "unable to read message");
502                                 continue;
503                         }
504
505                         /*
506                         ** Copy the message.  Add RFC934 quoting (dashstuffing)
507                         ** unless given the -nodashstuffing flag.
508                         */
509                         if (dashstuff >= 0)
510                                 cpydgst(fd, out, msgnam, file);
511                         else
512                                 cpydata(fd, out, msgnam, file);
513
514                         close(fd);
515                         msgcnt++;
516                 }
517         }
518
519         if (digest) {
520                 strncpy(buffer, delim4, sizeof(buffer));
521         } else {
522                 snprintf(buffer, sizeof(buffer),
523                                 "\n------- End of Forwarded Message%s\n\n",
524                                 mp->numsel > 1 ? "s" : "");
525         }
526         write(out, buffer, strlen(buffer));
527
528         if (digest) {
529                 snprintf(buffer, sizeof(buffer),
530                                 "End of %s Digest [Volume %d Issue %d]\n",
531                                 digest, volume, issue);
532                 i = strlen(buffer);
533                 for (bp = buffer + i; i > 1; i--)
534                         *bp++ = '*';
535                 *bp++ = '\n';
536                 *bp = 0;
537                 write(out, buffer, strlen(buffer));
538         }
539 }
540
541
542 /*
543 ** Create a mhbuild composition file for forwarding message.
544 */
545
546 static void
547 copy_mime_draft(int out)
548 {
549         int msgnum;
550         char buffer[BUFSIZ];
551
552         snprintf(buffer, sizeof(buffer), "#forw [forwarded message%s] +%s",
553                         mp->numsel == 1 ? "" : "s", mp->foldpath);
554         write(out, buffer, strlen(buffer));
555         for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++)
556                 if (is_selected(mp, msgnum)) {
557                         snprintf(buffer, sizeof(buffer), " %s",
558                                         m_name(msgnum));
559                         write(out, buffer, strlen(buffer));
560                 }
561         write(out, "\n", 1);
562 }
563
564
565 static int
566 build_form(char *form, char *digest, int volume, int issue)
567 {
568         int in;
569         int fmtsize;
570         register char *nfs;
571         char *line, tmpfil[BUFSIZ];
572         FILE *tmp;
573         register struct comp *cptr;
574         struct format *fmt;
575         int dat[5];
576         char *cp = NULL;
577
578         /* Get new format string */
579         nfs = new_fs(form, NULL, NULL);
580         fmtsize = strlen(nfs) + 256;
581
582         /* Compile format string */
583         fmt_compile(nfs, &fmt);
584
585         FINDCOMP(cptr, "digest");
586         if (cptr)
587                 cptr->c_text = digest;
588         FINDCOMP(cptr, "date");
589         if (cptr)
590                 cptr->c_text = getcpy(dtimenow(0));
591
592         dat[0] = issue;
593         dat[1] = volume;
594         dat[2] = 0;
595         dat[3] = fmtsize;
596         dat[4] = 0;
597
598         cp = m_mktemp2(NULL, invo_name, NULL, &tmp);
599         if (cp == NULL) adios("forw", "unable to create temporary file");
600         strncpy(tmpfil, cp, sizeof(tmpfil));
601         unlink(tmpfil);
602         if ((in = dup(fileno(tmp))) == NOTOK)
603                 adios("dup", "unable to");
604
605         line = mh_xmalloc((unsigned) fmtsize);
606         fmt_scan(fmt, line, fmtsize, dat);
607         fputs(line, tmp);
608         free(line);
609         if (fclose(tmp))
610                 adios(tmpfil, "error writing");
611
612         lseek(in, (off_t) 0, SEEK_SET);
613         return in;
614 }