* uip/sendsbr.c: with attachformat values of 1 or 2, add
[mmh] / uip / sendsbr.c
1
2 /*
3  * sendsbr.c -- routines to help WhatNow/Send along
4  *
5  * $Id$
6  *
7  * This code is Copyright (c) 2002, by the authors of nmh.  See the
8  * COPYRIGHT file in the root directory of the nmh distribution for
9  * complete copyright information.
10  */
11
12 #include <h/mh.h>
13 #include <h/signals.h>
14 #include <setjmp.h>
15 #include <signal.h>
16 #include <fcntl.h>
17 #include <h/mime.h>
18 #include <h/tws.h>
19 #include <h/utils.h>
20
21 #ifdef TIME_WITH_SYS_TIME
22 # include <sys/time.h>
23 # include <time.h>
24 #else
25 # ifdef TM_IN_SYS_TIME
26 #  include <sys/time.h>
27 # else
28 #  include <time.h>
29 # endif
30 #endif
31
32 int debugsw = 0;                /* global */
33 int forwsw  = 1;
34 int inplace = 1;
35 int pushsw  = 0;
36 int splitsw = -1;
37 int unique  = 0;
38 int verbsw  = 0;
39
40 char *altmsg   = NULL;          /*  .. */
41 char *annotext = NULL;
42 char *distfile = NULL;
43
44 static int armed = 0;
45 static jmp_buf env;
46
47 static  char    body_file_name[MAXPATHLEN + 1];         /* name of temporary file for body content */
48 static  char    composition_file_name[MAXPATHLEN + 1];  /* name of mhbuild composition temporary file */
49 static  int     field_size;                             /* size of header field buffer */
50 static  char    *field;                                 /* header field buffer */
51 static  FILE    *draft_file;                            /* draft file pointer */
52 static  FILE    *body_file;                             /* body file pointer */
53 static  FILE    *composition_file;                      /* composition file pointer */
54
55 /*
56  * external prototypes
57  */
58 int sendsbr (char **, int, char *, struct stat *, int, char *, int);
59 int done (int);
60 char *getusername (void);
61
62 /*
63  * static prototypes
64  */
65 static void alert (char *, int);
66 static int tmp_fd (void);
67 static void anno (int, struct stat *);
68 static void annoaux (int);
69 static int splitmsg (char **, int, char *, struct stat *, int);
70 static int sendaux (char **, int, char *, struct stat *);
71
72 static  int     attach(char *, char *, int);
73 static  void    clean_up_temporary_files(void);
74 static  int     get_line(void);
75 static  void    make_mime_composition_file_entry(char *, int);
76
77
78 /*
79  * Entry point into (back-end) routines to send message.
80  */
81
82 int
83 sendsbr (char **vec, int vecp, char *drft, struct stat *st, int rename_drft, char *attachment_header_field_name, int attachformat)
84 {
85     int status;
86     char buffer[BUFSIZ], file[BUFSIZ];
87     struct stat sts;
88     char        *original_draft;                /* name of original draft file */
89     char        *p;                             /* string pointer for building file name */
90
91     /*
92      *  Save the original name of the draft file.  The name of the draft file is changed
93      *  to a temporary file containing the built MIME message if there are attachments.
94      *  We need the original name so that it can be renamed after the message is sent.
95      */
96
97     original_draft = drft;
98
99     /*
100      *  There might be attachments if a header field name for attachments is supplied.
101      *  Convert the draft to a MIME message.  Use the mhbuild composition file for the
102      *  draft if there was a successful conversion because that now contains the MIME
103      *  message.  A nice side effect of this is that it leaves the original draft file
104      *  untouched so that it can be retrieved and modified if desired.
105      */
106
107     if (attachment_header_field_name != (char *)0) {
108         switch (attach(attachment_header_field_name, drft, attachformat)) {
109         case OK:
110             drft = composition_file_name;
111             break;
112
113         case NOTOK:
114             return (NOTOK);
115
116         case DONE:
117             break;
118         }
119     }
120
121     armed++;
122     switch (setjmp (env)) {
123     case OK: 
124         /*
125          * If given -push and -unique (which is undocumented), then
126          * rename the draft file.  I'm not quite sure why.
127          */
128         if (pushsw && unique) {
129             if (rename (drft, strncpy (file, m_scratch (drft, invo_name), sizeof(file)))
130                     == NOTOK)
131                 adios (file, "unable to rename %s to", drft);
132             drft = file;
133         }
134
135         /*
136          * Check if we need to split the message into
137          * multiple messages of type "message/partial".
138          */
139         if (splitsw >= 0 && !distfile && stat (drft, &sts) != NOTOK
140                 && sts.st_size >= CPERMSG) {
141             status = splitmsg (vec, vecp, drft, st, splitsw) ? NOTOK : OK;
142         } else {
143             status = sendaux (vec, vecp, drft, st) ? NOTOK : OK;
144         }
145
146         /* rename the original draft */
147         if (rename_drft && status == OK &&
148                 rename (original_draft, strncpy (buffer, m_backup (original_draft), sizeof(buffer))) == NOTOK)
149             advise (buffer, "unable to rename %s to", drft);
150         break;
151
152     default: 
153         status = DONE;
154         break;
155     }
156
157     armed = 0;
158     if (distfile)
159         unlink (distfile);
160
161     /*
162      *  Get rid of any temporary files that we created for attachments.  Also get rid of
163      *  the renamed composition file that mhbuild leaves as a turd.  It looks confusing,
164      *  but we use the body file name to help build the renamed composition file name.
165      */
166
167     if (drft == composition_file_name) {
168         clean_up_temporary_files();
169
170         if (strlen(composition_file_name) >= sizeof (composition_file_name) - 6)
171             advise((char *)0, "unable to remove original composition file.");
172
173         else {
174             if ((p = strrchr(composition_file_name, '/')) == (char *)0)
175                 p = composition_file_name;
176             else
177                 p++;
178             
179             (void)strcpy(body_file_name, p);
180             *p++ = ',';
181             (void)strcpy(p, body_file_name);
182             (void)strcat(p, ".orig");
183             
184             (void)unlink(composition_file_name);
185         }
186     }
187
188     return status;
189 }
190
191 static  int
192 attach(char *attachment_header_field_name, char *draft_file_name,
193        int attachformat)
194 {
195     char                buf[MAXPATHLEN + 6];    /* miscellaneous buffer */
196     int                 c;                      /* current character for body copy */
197     int                 has_attachment;         /* draft has at least one attachment */
198     int                 has_body;               /* draft has a message body */
199     int                 length;                 /* length of attachment header field name */
200     char                *p;                     /* miscellaneous string pointer */
201
202     /*
203      *  Open up the draft file.
204      */
205
206     if ((draft_file = fopen(draft_file_name, "r")) == (FILE *)0)
207         adios((char *)0, "can't open draft file `%s'.", draft_file_name);
208
209     /*
210      *  Allocate a buffer to hold the header components as they're read in.
211      *  This buffer might need to be quite large, so we grow it as needed.
212      */
213
214     field = (char *)mh_xmalloc(field_size = 256);
215
216     /*
217      *  Scan the draft file for a header field name that matches the -attach
218      *  argument.  The existence of one indicates that the draft has attachments.
219      *  Bail out if there are no attachments because we're done.  Read to the
220      *  end of the headers even if we have no attachments.
221      */
222
223     length = strlen(attachment_header_field_name);
224
225     has_attachment = 0;
226
227     while (get_line() != EOF && *field != '\0' && *field != '-')
228         if (strncasecmp(field, attachment_header_field_name, length) == 0 && field[length] == ':')
229             has_attachment = 1;
230
231     if (has_attachment == 0)
232         return (DONE);
233
234     /*
235      *  We have at least one attachment.  Look for at least one non-blank line
236      *  in the body of the message which indicates content in the body.
237      */
238
239     has_body = 0;
240
241     while (get_line() != EOF) {
242         for (p = field; *p != '\0'; p++) {
243             if (*p != ' ' && *p != '\t') {
244                 has_body = 1;
245                 break;
246             }
247         }
248
249         if (has_body)
250             break;
251     }
252
253     /*
254      *  Make names for the temporary files.
255      */
256
257     (void)strncpy(body_file_name, m_scratch("", m_maildir(invo_name)), sizeof (body_file_name));
258     (void)strncpy(composition_file_name, m_scratch("", m_maildir(invo_name)), sizeof (composition_file_name));
259
260     if (has_body)
261         body_file = fopen(body_file_name, "w");
262
263     composition_file = fopen(composition_file_name, "w");
264
265     if ((has_body && body_file == (FILE *)0) || composition_file == (FILE *)0) {
266         clean_up_temporary_files();
267         adios((char *)0, "unable to open all of the temporary files.");
268     }
269
270     /*
271      *  Start at the beginning of the draft file.  Copy all non-attachment header fields
272      *  to the temporary composition file.  Then add the dashed line separator.
273      */
274
275     rewind(draft_file);
276
277     while (get_line() != EOF && *field != '\0' && *field != '-')
278         if (strncasecmp(field, attachment_header_field_name, length) != 0 || field[length] != ':')
279             (void)fprintf(composition_file, "%s\n", field);
280
281     (void)fputs("--------\n", composition_file);
282
283     /*
284      *  Copy the message body to a temporary file.
285      */
286
287     if (has_body) {
288         while ((c = getc(draft_file)) != EOF)
289                 putc(c, body_file);
290
291         (void)fclose(body_file);
292     }
293
294     /*
295      *  Add a mhbuild MIME composition file line for the body if there was one.
296      */
297
298     if (has_body)
299         make_mime_composition_file_entry(body_file_name, attachformat);
300
301     /*
302      *  Now, go back to the beginning of the draft file and look for header fields
303      *  that specify attachments.  Add a mhbuild MIME composition file for each.
304      */
305
306     rewind(draft_file);
307
308     while (get_line() != EOF && *field != '\0' && *field != '-') {
309         if (strncasecmp(field, attachment_header_field_name, length) == 0 && field[length] == ':') {
310             for (p = field + length + 1; *p == ' ' || *p == '\t'; p++)
311                 ;
312
313             make_mime_composition_file_entry(p, attachformat);
314         }
315     }
316
317     (void)fclose(composition_file);
318
319     /*
320      *  We're ready to roll!  Run mhbuild on the composition file.  Note that mhbuild
321      *  is in the context as buildmimeproc.
322      */
323
324     (void)sprintf(buf, "%s %s", buildmimeproc, composition_file_name);
325
326     if (system(buf) != 0) {
327         clean_up_temporary_files();
328         return (NOTOK);
329     }
330
331     return (OK);
332 }
333
334 static  void
335 clean_up_temporary_files(void)
336 {
337     (void)unlink(body_file_name);
338     (void)unlink(composition_file_name);
339
340     return;
341 }
342
343 static  int
344 get_line(void)
345 {
346     int         c;      /* current character */
347     int         n;      /* number of bytes in buffer */
348     char        *p;     /* buffer pointer */
349
350     /*
351      *  Get a line from the input file, growing the field buffer as needed.  We do this
352      *  so that we can fit an entire line in the buffer making it easy to do a string
353      *  comparison on both the field name and the field body which might be a long path
354      *  name.
355      */
356
357     for (n = 0, p = field; (c = getc(draft_file)) != EOF; *p++ = c) {
358         if (c == '\n' && (c = getc(draft_file)) != ' ' && c != '\t') {
359             (void)ungetc(c, draft_file);
360             c = '\n';
361             break;
362         }
363
364         if (++n >= field_size - 1) {
365             field = (char *)mh_xrealloc((void *)field, field_size += 256);
366
367             p = field + n - 1;
368         }
369     }
370
371     /*
372      *  NUL-terminate the field..
373      */
374
375     *p = '\0';
376
377     return (c);
378 }
379
380 static  void
381 make_mime_composition_file_entry(char *file_name, int attachformat)
382 {
383     int                 binary;                 /* binary character found flag */
384     int                 c;                      /* current character */
385     char                cmd[MAXPATHLEN + 6];    /* file command buffer */
386     char                *content_type;          /* mime content type */
387     FILE                *fp;                    /* content and pipe file pointer */
388     struct      node    *np;                    /* context scan node pointer */
389     char                *p;                     /* miscellaneous string pointer */
390     struct      stat    st;                     /* file status buffer */
391
392     content_type = (char *)0;
393
394     /*
395      *  Check the file name for a suffix.  Scan the context for that suffix on a
396      *  mhshow-suffix- entry.  We use these entries to be compatible with mhnshow,
397      *  and there's no reason to make the user specify each suffix twice.  Context
398      *  entries of the form "mhshow-suffix-contenttype" in the name have the suffix
399      *  in the field, including the dot.
400      */
401
402     if ((p = strrchr(file_name, '.')) != (char *)0) {
403         for (np = m_defs; np; np = np->n_next) {
404             if (strncasecmp(np->n_name, "mhshow-suffix-", 14) == 0 && mh_strcasecmp(p, np->n_field) == 0) {
405                 content_type = np->n_name + 14;
406                 break;
407             }
408         }
409     }
410
411     /*
412      *  No content type was found, either because there was no matching entry in the
413      *  context or because the file name has no suffix.  Open the file and check for
414      *  non-ASCII characters.  Choose the content type based on this check.
415      */
416
417     if (content_type == (char *)0) {
418         if ((fp = fopen(file_name, "r")) == (FILE *)0) {
419             clean_up_temporary_files();
420             adios((char *)0, "unable to access file \"%s\"", file_name);
421         }
422
423         binary = 0;
424
425         while ((c = getc(fp)) != EOF) {
426             if (c > 127 || c < 0) {
427                 binary = 1;
428                 break;
429             }
430         }
431
432         (void)fclose(fp);
433
434         content_type = binary ? "application/octet-stream" : "text/plain";
435     }
436
437     /*
438      *  Make sure that the attachment file exists and is readable.  Append a mhbuild
439      *  directive to the draft file.  This starts with the content type.  Append a
440      *  file name attribute and a private x-unix-mode attribute.  Also append a
441      *  description obtained (if possible) by running the "file" command on the file.
442      */
443
444     if (stat(file_name, &st) == -1 || access(file_name, R_OK) != 0) {
445         clean_up_temporary_files();
446         adios((char *)0, "unable to access file \"%s\"", file_name);
447     }
448
449     switch (attachformat) {
450     case 0:
451         /* Insert name, file mode, and Content-Id. */
452         (void)fprintf(composition_file, "#%s; name=\"%s\"; x-unix-mode=0%.3ho",
453             content_type, ((p = strrchr(file_name, '/')) == (char *)0) ? file_name : p + 1, (unsigned short)(st.st_mode & 0777));
454
455         if (strlen(file_name) > MAXPATHLEN) {
456             clean_up_temporary_files();
457             adios((char *)0, "attachment file name `%s' too long.", file_name);
458         }
459
460         (void)sprintf(cmd, "file '%s'", file_name);
461
462         if ((fp = popen(cmd, "r")) != (FILE *)0 && fgets(cmd, sizeof (cmd), fp) != (char *)0) {
463             *strchr(cmd, '\n') = '\0';
464
465             /*
466              *  The output of the "file" command is of the form
467              *
468              *          file:   description
469              *
470              *  Strip off the "file:" and subsequent white space.
471              */
472
473             for (p = cmd; *p != '\0'; p++) {
474                 if (*p == ':') {
475                     for (p++; *p != '\0'; p++) {
476                         if (*p != '\t')
477                             break;
478                     }
479                     break;
480                 }
481             }
482
483             if (*p != '\0')
484                 /* Insert Content-Description. */
485                 (void)fprintf(composition_file, " [ %s ]", p);
486
487             (void)pclose(fp);
488         }
489
490         break;
491     case 1:
492         if (stringdex (m_maildir(invo_name), file_name) == 0) {
493             /* Content had been placed by send into a temp file.
494                Don't generate Content-Disposition header, because
495                it confuses Microsoft Outlook, Build 10.0.6626, at
496                least. */
497             (void) fprintf (composition_file, "#%s <>", content_type);
498         } else {
499             /* Suppress Content-Id, insert simple Content-Disposition. */
500             (void) fprintf (composition_file,
501                             "#%s; name=\"%s\" <>{attachment}",
502                             content_type,
503                             ((p = strrchr(file_name, '/')) == (char *)0) ? file_name : p + 1);
504         }
505
506         break;
507     case 2:
508         if (stringdex (m_maildir(invo_name), file_name) == 0) {
509             /* Content had been placed by send into a temp file.
510                Don't generate Content-Disposition header, because
511                it confuses Microsoft Outlook, Build 10.0.6626, at
512                least. */
513             (void) fprintf (composition_file, "#%s <>", content_type);
514         } else {
515             /* Suppress Content-Id, insert Content-Disposition with
516                modification date. */
517             (void) fprintf (composition_file,
518                             "#%s; name=\"%s\" <>{attachment; modification-date=\"%s\"}",
519                             content_type,
520                             ((p = strrchr(file_name, '/')) == (char *)0) ? file_name : p + 1,
521                             dtime (&st.st_mtime, 0));
522         }
523
524         break;
525     default:
526         adios ((char *)0, "unsupported attachformat %d", attachformat);
527     }
528
529     /*
530      *  Finish up with the file name.
531      */
532
533     (void)fprintf(composition_file, " %s\n", file_name);
534
535     return;
536 }
537
538 /*
539  * Split large message into several messages of
540  * type "message/partial" and send them.
541  */
542
543 static int
544 splitmsg (char **vec, int vecp, char *drft, struct stat *st, int delay)
545 {
546     int compnum, nparts, partno, state, status;
547     long pos, start;
548     time_t clock;
549     char *cp, *dp, buffer[BUFSIZ], msgid[BUFSIZ];
550     char subject[BUFSIZ];
551     char name[NAMESZ], partnum[BUFSIZ];
552     FILE *in;
553
554     if ((in = fopen (drft, "r")) == NULL)
555         adios (drft, "unable to open for reading");
556
557     cp = dp = NULL;
558     start = 0L;
559
560     /*
561      * Scan through the message and examine the various header fields,
562      * as well as locate the beginning of the message body.
563      */
564     for (compnum = 1, state = FLD;;) {
565         switch (state = m_getfld (state, name, buffer, sizeof(buffer), in)) {
566             case FLD:
567             case FLDPLUS:
568             case FLDEOF:
569                 compnum++;
570
571                 /*
572                  * This header field is discarded.
573                  */
574                 if (!mh_strcasecmp (name, "Message-ID")) {
575                     while (state == FLDPLUS)
576                         state = m_getfld (state, name, buffer, sizeof(buffer), in);
577                 } else if (uprf (name, XXX_FIELD_PRF)
578                         || !mh_strcasecmp (name, VRSN_FIELD)
579                         || !mh_strcasecmp (name, "Subject")
580                         || !mh_strcasecmp (name, "Encrypted")) {
581                     /*
582                      * These header fields are copied to the enclosed
583                      * header of the first message in the collection
584                      * of message/partials.  For the "Subject" header
585                      * field, we also record it, so that a modified
586                      * version of it, can be copied to the header
587                      * of each messsage/partial in the collection.
588                      */
589                     if (!mh_strcasecmp (name, "Subject")) {
590                         size_t sublen;
591
592                         strncpy (subject, buffer, BUFSIZ);
593                         sublen = strlen (subject);
594                         if (sublen > 0 && subject[sublen - 1] == '\n')
595                             subject[sublen - 1] = '\0';
596                     }
597
598                     dp = add (concat (name, ":", buffer, NULL), dp);
599                     while (state == FLDPLUS) {
600                         state = m_getfld (state, name, buffer, sizeof(buffer), in);
601                         dp = add (buffer, dp);
602                     }
603                 } else {
604                     /*
605                      * These header fields are copied to the header of
606                      * each message/partial in the collection.
607                      */
608                     cp = add (concat (name, ":", buffer, NULL), cp);
609                     while (state == FLDPLUS) {
610                         state = m_getfld (state, name, buffer, sizeof(buffer), in);
611                         cp = add (buffer, cp);
612                     }
613                 }
614
615                 if (state != FLDEOF) {
616                     start = ftell (in) + 1;
617                     continue;
618                 }
619                 /* else fall... */
620
621            case BODY:
622            case BODYEOF:
623            case FILEEOF:
624                 break;
625
626            case LENERR:
627            case FMTERR:
628                 adios (NULL, "message format error in component #%d", compnum);
629
630            default:
631                 adios (NULL, "getfld () returned %d", state);
632         }
633
634         break;
635     }
636     if (cp == NULL)
637         adios (NULL, "headers missing from draft");
638
639     nparts = 1;
640     pos = start;
641     while (fgets (buffer, sizeof(buffer) - 1, in)) {
642         long len;
643
644         if ((pos += (len = strlen (buffer))) > CPERMSG) {
645             nparts++;
646             pos = len;
647         }
648     }
649
650     /* Only one part, nothing to split */
651     if (nparts == 1) {
652         free (cp);
653         if (dp)
654             free (dp);
655
656         fclose (in);
657         return sendaux (vec, vecp, drft, st);
658     }
659
660     if (!pushsw) {
661         printf ("Sending as %d Partial Messages\n", nparts);
662         fflush (stdout);
663     }
664     status = OK;
665
666     vec[vecp++] = "-partno";
667     vec[vecp++] = partnum;
668     if (delay == 0)
669         vec[vecp++] = "-queued";
670
671     time (&clock);
672     snprintf (msgid, sizeof(msgid), "<%d.%ld@%s>",
673                 (int) getpid(), (long) clock, LocalName());
674
675     fseek (in, start, SEEK_SET);
676     for (partno = 1; partno <= nparts; partno++) {
677         char tmpdrf[BUFSIZ];
678         FILE *out;
679
680         strncpy (tmpdrf, m_scratch (drft, invo_name), sizeof(tmpdrf));
681         if ((out = fopen (tmpdrf, "w")) == NULL)
682             adios (tmpdrf, "unable to open for writing");
683         chmod (tmpdrf, 0600);
684
685         /*
686          * Output the header fields
687          */
688         fputs (cp, out);
689         fprintf (out, "Subject: %s (part %d of %d)\n", subject, partno, nparts);
690         fprintf (out, "%s: %s\n", VRSN_FIELD, VRSN_VALUE);
691         fprintf (out, "%s: message/partial; id=\"%s\";\n", TYPE_FIELD, msgid);
692         fprintf (out, "\tnumber=%d; total=%d\n", partno, nparts);
693         fprintf (out, "%s: part %d of %d\n\n", DESCR_FIELD, partno, nparts);
694
695         /*
696          * If this is the first in the collection, output the
697          * header fields we are encapsulating at the beginning
698          * of the body of the first message.
699          */
700         if (partno == 1) {
701             if (dp)
702                 fputs (dp, out);
703             fprintf (out, "Message-ID: %s\n", msgid);
704             fprintf (out, "\n");
705         }
706
707         pos = 0;
708         for (;;) {
709             long len;
710
711             if (!fgets (buffer, sizeof(buffer) - 1, in)) {
712                 if (partno == nparts)
713                     break;
714                 adios (NULL, "premature eof");
715             }
716             
717             if ((pos += (len = strlen (buffer))) > CPERMSG) {
718                 fseek (in, -len, SEEK_CUR);
719                 break;
720             }
721
722             fputs (buffer, out);
723         }
724
725         if (fflush (out))
726             adios (tmpdrf, "error writing to");
727
728         fclose (out);
729
730         if (!pushsw && verbsw) {
731             printf ("\n");
732             fflush (stdout);
733         }
734
735         /* Pause here, if a delay is specified */
736         if (delay > 0 && 1 < partno && partno <= nparts) {
737             if (!pushsw) {
738                 printf ("pausing %d seconds before sending part %d...\n",
739                         delay, partno);
740                 fflush (stdout);
741             }
742             sleep ((unsigned int) delay);
743         }
744
745         snprintf (partnum, sizeof(partnum), "%d", partno);
746         status = sendaux (vec, vecp, tmpdrf, st);
747         unlink (tmpdrf);
748         if (status != OK)
749             break;
750
751         /*
752          * This is so sendaux will only annotate
753          * the altmsg the first time it is called.
754          */
755         annotext = NULL;
756     }
757
758     free (cp);
759     if (dp)
760         free (dp);
761
762     fclose (in);        /* close the draft */
763     return status;
764 }
765
766
767 /*
768  * Annotate original message, and
769  * call `postproc' to send message.
770  */
771
772 static int
773 sendaux (char **vec, int vecp, char *drft, struct stat *st)
774 {
775     pid_t child_id;
776     int i, status, fd, fd2;
777     char backup[BUFSIZ], buf[BUFSIZ];
778
779     fd = pushsw ? tmp_fd () : NOTOK;
780     fd2 = NOTOK;
781
782     vec[vecp++] = drft;
783     if (annotext) {
784         if ((fd2 = tmp_fd ()) != NOTOK) {
785             vec[vecp++] = "-idanno";
786             snprintf (buf, sizeof(buf), "%d", fd2);
787             vec[vecp++] = buf;
788         } else {
789             admonish (NULL, "unable to create file for annotation list");
790         }
791     }
792     if (distfile && distout (drft, distfile, backup) == NOTOK)
793         done (1);
794     vec[vecp] = NULL;
795
796     for (i = 0; (child_id = vfork()) == NOTOK && i < 5; i++)
797         sleep (5);
798
799     switch (child_id) {
800     case -1:
801         /* oops -- fork error */
802         adios ("fork", "unable to");
803         break;  /* NOT REACHED */
804
805     case 0:
806         /*
807          * child process -- send it
808          *
809          * If fd is ok, then we are pushing and fd points to temp
810          * file, so capture anything on stdout and stderr there.
811          */
812         if (fd != NOTOK) {
813             dup2 (fd, fileno (stdout));
814             dup2 (fd, fileno (stderr));
815             close (fd);
816         }
817         execvp (postproc, vec);
818         fprintf (stderr, "unable to exec ");
819         perror (postproc);
820         _exit (-1);
821         break;  /* NOT REACHED */
822
823     default:
824         /*
825          * parent process -- wait for it
826          */
827         if ((status = pidwait(child_id, NOTOK)) == OK) {
828             if (annotext && fd2 != NOTOK)
829                 anno (fd2, st);
830         } else {
831             /*
832              * If postproc failed, and we have good fd (which means
833              * we pushed), then mail error message (and possibly the
834              * draft) back to the user.
835              */
836             if (fd != NOTOK) {
837                 alert (drft, fd);
838                 close (fd);
839             } else {
840                 advise (NULL, "message not delivered to anyone");
841             }
842             if (annotext && fd2 != NOTOK)
843                 close (fd2);
844             if (distfile) {
845                 unlink (drft);
846                 if (rename (backup, drft) == NOTOK)
847                     advise (drft, "unable to rename %s to", backup);
848             }
849         }
850         break;
851     }
852
853     return status;
854 }
855
856
857 /*
858  * Mail error notification (and possibly a copy of the
859  * message) back to the user, using the mailproc
860  */
861
862 static void
863 alert (char *file, int out)
864 {
865     pid_t child_id;
866     int i, in;
867     char buf[BUFSIZ];
868
869     for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++)
870         sleep (5);
871
872     switch (child_id) {
873         case NOTOK:
874             /* oops -- fork error */
875             advise ("fork", "unable to");
876
877         case OK:
878             /* child process -- send it */
879             SIGNAL (SIGHUP, SIG_IGN);
880             SIGNAL (SIGINT, SIG_IGN);
881             SIGNAL (SIGQUIT, SIG_IGN);
882             SIGNAL (SIGTERM, SIG_IGN);
883             if (forwsw) {
884                 if ((in = open (file, O_RDONLY)) == NOTOK) {
885                     admonish (file, "unable to re-open");
886                 } else {
887                     lseek (out, (off_t) 0, SEEK_END);
888                     strncpy (buf, "\nMessage not delivered to anyone.\n", sizeof(buf));
889                     write (out, buf, strlen (buf));
890                     strncpy (buf, "\n------- Unsent Draft\n\n", sizeof(buf));
891                     write (out, buf, strlen (buf));
892                     cpydgst (in, out, file, "temporary file");
893                     close (in);
894                     strncpy (buf, "\n------- End of Unsent Draft\n", sizeof(buf));
895                     write (out, buf, strlen (buf));
896                     if (rename (file, strncpy (buf, m_backup (file), sizeof(buf))) == NOTOK)
897                         admonish (buf, "unable to rename %s to", file);
898                 }
899             }
900             lseek (out, (off_t) 0, SEEK_SET);
901             dup2 (out, fileno (stdin));
902             close (out);
903             /* create subject for error notification */
904             snprintf (buf, sizeof(buf), "send failed on %s",
905                         forwsw ? "enclosed draft" : file);
906
907             execlp (mailproc, r1bindex (mailproc, '/'), getusername (),
908                     "-subject", buf, NULL);
909             fprintf (stderr, "unable to exec ");
910             perror (mailproc);
911             _exit (-1);
912
913         default:                /* no waiting... */
914             break;
915     }
916 }
917
918
919 static int
920 tmp_fd (void)
921 {
922     int fd;
923     char tmpfil[BUFSIZ];
924
925     strncpy (tmpfil, m_tmpfil (invo_name), sizeof(tmpfil));
926     if ((fd = open (tmpfil, O_RDWR | O_CREAT | O_TRUNC, 0600)) == NOTOK)
927         return NOTOK;
928     if (debugsw)
929         advise (NULL, "temporary file %s selected", tmpfil);
930     else
931         if (unlink (tmpfil) == NOTOK)
932             advise (tmpfil, "unable to remove");
933
934     return fd;
935 }
936
937
938 static void
939 anno (int fd, struct stat *st)
940 {
941     pid_t child_id;
942     sigset_t set, oset;
943     static char *cwd = NULL;
944     struct stat st2;
945
946     if (altmsg &&
947             (stat (altmsg, &st2) == NOTOK
948                 || st->st_mtime != st2.st_mtime
949                 || st->st_dev != st2.st_dev
950                 || st->st_ino != st2.st_ino)) {
951         if (debugsw)
952             admonish (NULL, "$mhaltmsg mismatch");
953         return;
954     }
955
956     child_id = debugsw ? NOTOK : fork ();
957     switch (child_id) {
958         case NOTOK:             /* oops */
959             if (!debugsw)
960                 advise (NULL,
961                             "unable to fork, so doing annotations by hand...");
962             if (cwd == NULL)
963                 cwd = getcpy (pwd ());
964
965         case OK: 
966             /* block a few signals */
967             sigemptyset (&set);
968             sigaddset (&set, SIGHUP);
969             sigaddset (&set, SIGINT);
970             sigaddset (&set, SIGQUIT);
971             sigaddset (&set, SIGTERM);
972             SIGPROCMASK (SIG_BLOCK, &set, &oset);
973
974             annoaux (fd);
975             if (child_id == OK)
976                 _exit (0);
977
978             /* reset the signal mask */
979             SIGPROCMASK (SIG_SETMASK, &oset, &set);
980
981             chdir (cwd);
982             break;
983
984         default:                /* no waiting... */
985             close (fd);
986             break;
987     }
988 }
989
990
991 static void
992 annoaux (int fd)
993 {
994     int fd2, fd3, msgnum;
995     char *cp, *folder, *maildir;
996     char buffer[BUFSIZ], **ap;
997     FILE *fp;
998     struct msgs *mp;
999
1000     if ((folder = getenv ("mhfolder")) == NULL || *folder == 0) {
1001         if (debugsw)
1002             admonish (NULL, "$mhfolder not set");
1003         return;
1004     }
1005     maildir = m_maildir (folder);
1006     if (chdir (maildir) == NOTOK) {
1007         if (debugsw)
1008             admonish (maildir, "unable to change directory to");
1009         return;
1010     }
1011     if (!(mp = folder_read (folder))) {
1012         if (debugsw)
1013             admonish (NULL, "unable to read folder %s");
1014         return;
1015     }
1016
1017     /* check for empty folder */
1018     if (mp->nummsg == 0) {
1019         if (debugsw)
1020             admonish (NULL, "no messages in %s", folder);
1021         goto oops;
1022     }
1023
1024     if ((cp = getenv ("mhmessages")) == NULL || *cp == 0) {
1025         if (debugsw)
1026             admonish (NULL, "$mhmessages not set");
1027         goto oops;
1028     }
1029     if (!debugsw                        /* MOBY HACK... */
1030             && pushsw
1031             && (fd3 = open ("/dev/null", O_RDWR)) != NOTOK
1032             && (fd2 = dup (fileno (stderr))) != NOTOK) {
1033         dup2 (fd3, fileno (stderr));
1034         close (fd3);
1035     }
1036     else
1037         fd2 = NOTOK;
1038     for (ap = brkstring (cp = getcpy (cp), " ", NULL); *ap; ap++)
1039         m_convert (mp, *ap);
1040     free (cp);
1041     if (fd2 != NOTOK)
1042         dup2 (fd2, fileno (stderr));
1043     if (mp->numsel == 0) {
1044         if (debugsw)
1045             admonish (NULL, "no messages to annotate");
1046         goto oops;
1047     }
1048
1049     lseek (fd, (off_t) 0, SEEK_SET);
1050     if ((fp = fdopen (fd, "r")) == NULL) {
1051         if (debugsw)
1052             admonish (NULL, "unable to fdopen annotation list");
1053         goto oops;
1054     }
1055     cp = NULL;
1056     while (fgets (buffer, sizeof(buffer), fp) != NULL)
1057         cp = add (buffer, cp);
1058     fclose (fp);
1059
1060     if (debugsw)
1061         advise (NULL, "annotate%s with %s: \"%s\"",
1062                 inplace ? " inplace" : "", annotext, cp);
1063     for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
1064         if (is_selected(mp, msgnum)) {
1065             if (debugsw)
1066                 advise (NULL, "annotate message %d", msgnum);
1067             annotate (m_name (msgnum), annotext, cp, inplace, 1, -2, 0);
1068         }
1069     }
1070
1071     free (cp);
1072
1073 oops:
1074     folder_free (mp);   /* free folder/message structure */
1075 }
1076
1077
1078 int
1079 done (int status)
1080 {
1081     if (armed)
1082         longjmp (env, status ? status : NOTOK);
1083
1084     exit (status);
1085     return 1;  /* dead code to satisfy the compiler */
1086 }