* (mh_strcasecmp): Rename the private strcasecmp function to mh_strcasecmp.
[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         /* Suppress Content-Id, insert simple Content-Disposition. */
493         (void) fprintf (composition_file, "#%s <>{attachment}", content_type);
494
495         break;
496     case 2:
497         /* Suppress Content-Id, insert Content-Disposition with
498            modification date. */
499         (void) fprintf (composition_file,
500                         "#%s <>{attachment; modification-date=\"%s\"}",
501                         content_type,
502                         dtime (&st.st_mtime, 0));
503
504         break;
505     default:
506         adios ((char *)0, "unsupported attachformat %d", attachformat);
507     }
508
509     /*
510      *  Finish up with the file name.
511      */
512
513     (void)fprintf(composition_file, " %s\n", file_name);
514
515     return;
516 }
517
518 /*
519  * Split large message into several messages of
520  * type "message/partial" and send them.
521  */
522
523 static int
524 splitmsg (char **vec, int vecp, char *drft, struct stat *st, int delay)
525 {
526     int compnum, nparts, partno, state, status;
527     long pos, start;
528     time_t clock;
529     char *cp, *dp, buffer[BUFSIZ], msgid[BUFSIZ];
530     char subject[BUFSIZ];
531     char name[NAMESZ], partnum[BUFSIZ];
532     FILE *in;
533
534     if ((in = fopen (drft, "r")) == NULL)
535         adios (drft, "unable to open for reading");
536
537     cp = dp = NULL;
538     start = 0L;
539
540     /*
541      * Scan through the message and examine the various header fields,
542      * as well as locate the beginning of the message body.
543      */
544     for (compnum = 1, state = FLD;;) {
545         switch (state = m_getfld (state, name, buffer, sizeof(buffer), in)) {
546             case FLD:
547             case FLDPLUS:
548             case FLDEOF:
549                 compnum++;
550
551                 /*
552                  * This header field is discarded.
553                  */
554                 if (!mh_strcasecmp (name, "Message-ID")) {
555                     while (state == FLDPLUS)
556                         state = m_getfld (state, name, buffer, sizeof(buffer), in);
557                 } else if (uprf (name, XXX_FIELD_PRF)
558                         || !mh_strcasecmp (name, VRSN_FIELD)
559                         || !mh_strcasecmp (name, "Subject")
560                         || !mh_strcasecmp (name, "Encrypted")) {
561                     /*
562                      * These header fields are copied to the enclosed
563                      * header of the first message in the collection
564                      * of message/partials.  For the "Subject" header
565                      * field, we also record it, so that a modified
566                      * version of it, can be copied to the header
567                      * of each messsage/partial in the collection.
568                      */
569                     if (!mh_strcasecmp (name, "Subject")) {
570                         size_t sublen;
571
572                         strncpy (subject, buffer, BUFSIZ);
573                         sublen = strlen (subject);
574                         if (sublen > 0 && subject[sublen - 1] == '\n')
575                             subject[sublen - 1] = '\0';
576                     }
577
578                     dp = add (concat (name, ":", buffer, NULL), dp);
579                     while (state == FLDPLUS) {
580                         state = m_getfld (state, name, buffer, sizeof(buffer), in);
581                         dp = add (buffer, dp);
582                     }
583                 } else {
584                     /*
585                      * These header fields are copied to the header of
586                      * each message/partial in the collection.
587                      */
588                     cp = add (concat (name, ":", buffer, NULL), cp);
589                     while (state == FLDPLUS) {
590                         state = m_getfld (state, name, buffer, sizeof(buffer), in);
591                         cp = add (buffer, cp);
592                     }
593                 }
594
595                 if (state != FLDEOF) {
596                     start = ftell (in) + 1;
597                     continue;
598                 }
599                 /* else fall... */
600
601            case BODY:
602            case BODYEOF:
603            case FILEEOF:
604                 break;
605
606            case LENERR:
607            case FMTERR:
608                 adios (NULL, "message format error in component #%d", compnum);
609
610            default:
611                 adios (NULL, "getfld () returned %d", state);
612         }
613
614         break;
615     }
616     if (cp == NULL)
617         adios (NULL, "headers missing from draft");
618
619     nparts = 1;
620     pos = start;
621     while (fgets (buffer, sizeof(buffer) - 1, in)) {
622         long len;
623
624         if ((pos += (len = strlen (buffer))) > CPERMSG) {
625             nparts++;
626             pos = len;
627         }
628     }
629
630     /* Only one part, nothing to split */
631     if (nparts == 1) {
632         free (cp);
633         if (dp)
634             free (dp);
635
636         fclose (in);
637         return sendaux (vec, vecp, drft, st);
638     }
639
640     if (!pushsw) {
641         printf ("Sending as %d Partial Messages\n", nparts);
642         fflush (stdout);
643     }
644     status = OK;
645
646     vec[vecp++] = "-partno";
647     vec[vecp++] = partnum;
648     if (delay == 0)
649         vec[vecp++] = "-queued";
650
651     time (&clock);
652     snprintf (msgid, sizeof(msgid), "<%d.%ld@%s>",
653                 (int) getpid(), (long) clock, LocalName());
654
655     fseek (in, start, SEEK_SET);
656     for (partno = 1; partno <= nparts; partno++) {
657         char tmpdrf[BUFSIZ];
658         FILE *out;
659
660         strncpy (tmpdrf, m_scratch (drft, invo_name), sizeof(tmpdrf));
661         if ((out = fopen (tmpdrf, "w")) == NULL)
662             adios (tmpdrf, "unable to open for writing");
663         chmod (tmpdrf, 0600);
664
665         /*
666          * Output the header fields
667          */
668         fputs (cp, out);
669         fprintf (out, "Subject: %s (part %d of %d)\n", subject, partno, nparts);
670         fprintf (out, "%s: %s\n", VRSN_FIELD, VRSN_VALUE);
671         fprintf (out, "%s: message/partial; id=\"%s\";\n", TYPE_FIELD, msgid);
672         fprintf (out, "\tnumber=%d; total=%d\n", partno, nparts);
673         fprintf (out, "%s: part %d of %d\n\n", DESCR_FIELD, partno, nparts);
674
675         /*
676          * If this is the first in the collection, output the
677          * header fields we are encapsulating at the beginning
678          * of the body of the first message.
679          */
680         if (partno == 1) {
681             if (dp)
682                 fputs (dp, out);
683             fprintf (out, "Message-ID: %s\n", msgid);
684             fprintf (out, "\n");
685         }
686
687         pos = 0;
688         for (;;) {
689             long len;
690
691             if (!fgets (buffer, sizeof(buffer) - 1, in)) {
692                 if (partno == nparts)
693                     break;
694                 adios (NULL, "premature eof");
695             }
696             
697             if ((pos += (len = strlen (buffer))) > CPERMSG) {
698                 fseek (in, -len, SEEK_CUR);
699                 break;
700             }
701
702             fputs (buffer, out);
703         }
704
705         if (fflush (out))
706             adios (tmpdrf, "error writing to");
707
708         fclose (out);
709
710         if (!pushsw && verbsw) {
711             printf ("\n");
712             fflush (stdout);
713         }
714
715         /* Pause here, if a delay is specified */
716         if (delay > 0 && 1 < partno && partno <= nparts) {
717             if (!pushsw) {
718                 printf ("pausing %d seconds before sending part %d...\n",
719                         delay, partno);
720                 fflush (stdout);
721             }
722             sleep ((unsigned int) delay);
723         }
724
725         snprintf (partnum, sizeof(partnum), "%d", partno);
726         status = sendaux (vec, vecp, tmpdrf, st);
727         unlink (tmpdrf);
728         if (status != OK)
729             break;
730
731         /*
732          * This is so sendaux will only annotate
733          * the altmsg the first time it is called.
734          */
735         annotext = NULL;
736     }
737
738     free (cp);
739     if (dp)
740         free (dp);
741
742     fclose (in);        /* close the draft */
743     return status;
744 }
745
746
747 /*
748  * Annotate original message, and
749  * call `postproc' to send message.
750  */
751
752 static int
753 sendaux (char **vec, int vecp, char *drft, struct stat *st)
754 {
755     pid_t child_id;
756     int i, status, fd, fd2;
757     char backup[BUFSIZ], buf[BUFSIZ];
758
759     fd = pushsw ? tmp_fd () : NOTOK;
760     fd2 = NOTOK;
761
762     vec[vecp++] = drft;
763     if (annotext) {
764         if ((fd2 = tmp_fd ()) != NOTOK) {
765             vec[vecp++] = "-idanno";
766             snprintf (buf, sizeof(buf), "%d", fd2);
767             vec[vecp++] = buf;
768         } else {
769             admonish (NULL, "unable to create file for annotation list");
770         }
771     }
772     if (distfile && distout (drft, distfile, backup) == NOTOK)
773         done (1);
774     vec[vecp] = NULL;
775
776     for (i = 0; (child_id = vfork()) == NOTOK && i < 5; i++)
777         sleep (5);
778
779     switch (child_id) {
780     case -1:
781         /* oops -- fork error */
782         adios ("fork", "unable to");
783         break;  /* NOT REACHED */
784
785     case 0:
786         /*
787          * child process -- send it
788          *
789          * If fd is ok, then we are pushing and fd points to temp
790          * file, so capture anything on stdout and stderr there.
791          */
792         if (fd != NOTOK) {
793             dup2 (fd, fileno (stdout));
794             dup2 (fd, fileno (stderr));
795             close (fd);
796         }
797         execvp (postproc, vec);
798         fprintf (stderr, "unable to exec ");
799         perror (postproc);
800         _exit (-1);
801         break;  /* NOT REACHED */
802
803     default:
804         /*
805          * parent process -- wait for it
806          */
807         if ((status = pidwait(child_id, NOTOK)) == OK) {
808             if (annotext && fd2 != NOTOK)
809                 anno (fd2, st);
810         } else {
811             /*
812              * If postproc failed, and we have good fd (which means
813              * we pushed), then mail error message (and possibly the
814              * draft) back to the user.
815              */
816             if (fd != NOTOK) {
817                 alert (drft, fd);
818                 close (fd);
819             } else {
820                 advise (NULL, "message not delivered to anyone");
821             }
822             if (annotext && fd2 != NOTOK)
823                 close (fd2);
824             if (distfile) {
825                 unlink (drft);
826                 if (rename (backup, drft) == NOTOK)
827                     advise (drft, "unable to rename %s to", backup);
828             }
829         }
830         break;
831     }
832
833     return status;
834 }
835
836
837 /*
838  * Mail error notification (and possibly a copy of the
839  * message) back to the user, using the mailproc
840  */
841
842 static void
843 alert (char *file, int out)
844 {
845     pid_t child_id;
846     int i, in;
847     char buf[BUFSIZ];
848
849     for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++)
850         sleep (5);
851
852     switch (child_id) {
853         case NOTOK:
854             /* oops -- fork error */
855             advise ("fork", "unable to");
856
857         case OK:
858             /* child process -- send it */
859             SIGNAL (SIGHUP, SIG_IGN);
860             SIGNAL (SIGINT, SIG_IGN);
861             SIGNAL (SIGQUIT, SIG_IGN);
862             SIGNAL (SIGTERM, SIG_IGN);
863             if (forwsw) {
864                 if ((in = open (file, O_RDONLY)) == NOTOK) {
865                     admonish (file, "unable to re-open");
866                 } else {
867                     lseek (out, (off_t) 0, SEEK_END);
868                     strncpy (buf, "\nMessage not delivered to anyone.\n", sizeof(buf));
869                     write (out, buf, strlen (buf));
870                     strncpy (buf, "\n------- Unsent Draft\n\n", sizeof(buf));
871                     write (out, buf, strlen (buf));
872                     cpydgst (in, out, file, "temporary file");
873                     close (in);
874                     strncpy (buf, "\n------- End of Unsent Draft\n", sizeof(buf));
875                     write (out, buf, strlen (buf));
876                     if (rename (file, strncpy (buf, m_backup (file), sizeof(buf))) == NOTOK)
877                         admonish (buf, "unable to rename %s to", file);
878                 }
879             }
880             lseek (out, (off_t) 0, SEEK_SET);
881             dup2 (out, fileno (stdin));
882             close (out);
883             /* create subject for error notification */
884             snprintf (buf, sizeof(buf), "send failed on %s",
885                         forwsw ? "enclosed draft" : file);
886
887             execlp (mailproc, r1bindex (mailproc, '/'), getusername (),
888                     "-subject", buf, NULL);
889             fprintf (stderr, "unable to exec ");
890             perror (mailproc);
891             _exit (-1);
892
893         default:                /* no waiting... */
894             break;
895     }
896 }
897
898
899 static int
900 tmp_fd (void)
901 {
902     int fd;
903     char tmpfil[BUFSIZ];
904
905     strncpy (tmpfil, m_tmpfil (invo_name), sizeof(tmpfil));
906     if ((fd = open (tmpfil, O_RDWR | O_CREAT | O_TRUNC, 0600)) == NOTOK)
907         return NOTOK;
908     if (debugsw)
909         advise (NULL, "temporary file %s selected", tmpfil);
910     else
911         if (unlink (tmpfil) == NOTOK)
912             advise (tmpfil, "unable to remove");
913
914     return fd;
915 }
916
917
918 static void
919 anno (int fd, struct stat *st)
920 {
921     pid_t child_id;
922     sigset_t set, oset;
923     static char *cwd = NULL;
924     struct stat st2;
925
926     if (altmsg &&
927             (stat (altmsg, &st2) == NOTOK
928                 || st->st_mtime != st2.st_mtime
929                 || st->st_dev != st2.st_dev
930                 || st->st_ino != st2.st_ino)) {
931         if (debugsw)
932             admonish (NULL, "$mhaltmsg mismatch");
933         return;
934     }
935
936     child_id = debugsw ? NOTOK : fork ();
937     switch (child_id) {
938         case NOTOK:             /* oops */
939             if (!debugsw)
940                 advise (NULL,
941                             "unable to fork, so doing annotations by hand...");
942             if (cwd == NULL)
943                 cwd = getcpy (pwd ());
944
945         case OK: 
946             /* block a few signals */
947             sigemptyset (&set);
948             sigaddset (&set, SIGHUP);
949             sigaddset (&set, SIGINT);
950             sigaddset (&set, SIGQUIT);
951             sigaddset (&set, SIGTERM);
952             SIGPROCMASK (SIG_BLOCK, &set, &oset);
953
954             annoaux (fd);
955             if (child_id == OK)
956                 _exit (0);
957
958             /* reset the signal mask */
959             SIGPROCMASK (SIG_SETMASK, &oset, &set);
960
961             chdir (cwd);
962             break;
963
964         default:                /* no waiting... */
965             close (fd);
966             break;
967     }
968 }
969
970
971 static void
972 annoaux (int fd)
973 {
974     int fd2, fd3, msgnum;
975     char *cp, *folder, *maildir;
976     char buffer[BUFSIZ], **ap;
977     FILE *fp;
978     struct msgs *mp;
979
980     if ((folder = getenv ("mhfolder")) == NULL || *folder == 0) {
981         if (debugsw)
982             admonish (NULL, "$mhfolder not set");
983         return;
984     }
985     maildir = m_maildir (folder);
986     if (chdir (maildir) == NOTOK) {
987         if (debugsw)
988             admonish (maildir, "unable to change directory to");
989         return;
990     }
991     if (!(mp = folder_read (folder))) {
992         if (debugsw)
993             admonish (NULL, "unable to read folder %s");
994         return;
995     }
996
997     /* check for empty folder */
998     if (mp->nummsg == 0) {
999         if (debugsw)
1000             admonish (NULL, "no messages in %s", folder);
1001         goto oops;
1002     }
1003
1004     if ((cp = getenv ("mhmessages")) == NULL || *cp == 0) {
1005         if (debugsw)
1006             admonish (NULL, "$mhmessages not set");
1007         goto oops;
1008     }
1009     if (!debugsw                        /* MOBY HACK... */
1010             && pushsw
1011             && (fd3 = open ("/dev/null", O_RDWR)) != NOTOK
1012             && (fd2 = dup (fileno (stderr))) != NOTOK) {
1013         dup2 (fd3, fileno (stderr));
1014         close (fd3);
1015     }
1016     else
1017         fd2 = NOTOK;
1018     for (ap = brkstring (cp = getcpy (cp), " ", NULL); *ap; ap++)
1019         m_convert (mp, *ap);
1020     free (cp);
1021     if (fd2 != NOTOK)
1022         dup2 (fd2, fileno (stderr));
1023     if (mp->numsel == 0) {
1024         if (debugsw)
1025             admonish (NULL, "no messages to annotate");
1026         goto oops;
1027     }
1028
1029     lseek (fd, (off_t) 0, SEEK_SET);
1030     if ((fp = fdopen (fd, "r")) == NULL) {
1031         if (debugsw)
1032             admonish (NULL, "unable to fdopen annotation list");
1033         goto oops;
1034     }
1035     cp = NULL;
1036     while (fgets (buffer, sizeof(buffer), fp) != NULL)
1037         cp = add (buffer, cp);
1038     fclose (fp);
1039
1040     if (debugsw)
1041         advise (NULL, "annotate%s with %s: \"%s\"",
1042                 inplace ? " inplace" : "", annotext, cp);
1043     for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
1044         if (is_selected(mp, msgnum)) {
1045             if (debugsw)
1046                 advise (NULL, "annotate message %d", msgnum);
1047             annotate (m_name (msgnum), annotext, cp, inplace, 1, -2, 0);
1048         }
1049     }
1050
1051     free (cp);
1052
1053 oops:
1054     folder_free (mp);   /* free folder/message structure */
1055 }
1056
1057
1058 int
1059 done (int status)
1060 {
1061     if (armed)
1062         longjmp (env, status ? status : NOTOK);
1063
1064     exit (status);
1065     return 1;  /* dead code to satisfy the compiler */
1066 }