a90c6b24d4851dbb985df08902629dac45f2ea28
[mmh] / uip / send.c
1 /*
2 ** send.c -- send a composed message
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 <errno.h>
12 #include <signal.h>
13 #include <h/signals.h>
14 #include <setjmp.h>
15 #include <h/mime.h>
16 #include <h/tws.h>
17 #include <h/utils.h>
18
19 #ifdef TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # ifdef TM_IN_SYS_TIME
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 int debugsw = 0;  /* global */
31 int forwsw  = 1;
32 int pushsw  = 0;
33 int verbsw  = 0;
34 char *altmsg   = NULL;
35 char *annotext = NULL;
36 char *distfile = NULL;
37
38 static jmp_buf env;
39
40 /* name of temp file for body content */
41 static char body_file_name[MAXPATHLEN + 1];
42 /* name of mhbuild composition temporary file */
43 static char composition_file_name[MAXPATHLEN + 1]; 
44 static int field_size;  /* size of header field buffer */
45 static char *field;  /* header field buffer */
46 static FILE *draft_file;  /* draft file pointer */
47 static FILE *body_file;  /* body file pointer */
48 static FILE *composition_file;  /* composition file pointer */
49
50 /*
51 ** static prototypes
52 */
53 static int sendsbr(char **, int, char *, struct stat *, int);
54 static void armed_done(int) NORETURN;
55 static void alert(char *, int);
56 static int tmp_fd(void);
57 static void anno(struct stat *);
58 static int sendaux(char **, int, char *, struct stat *);
59 static int attach(char *);
60 static void clean_up_temporary_files(void);
61 static int get_line(void);
62 static void make_mime_composition_file_entry(char *);
63
64
65 static struct swit switches[] = {
66 #define ALIASW  0
67         { "alias aliasfile", 0 },
68 #define DEBUGSW  1
69         { "debug", -5 },
70 #define FORWSW  2
71         { "forward", 0 },
72 #define NFORWSW  3
73         { "noforward", 0 },
74 #define PUSHSW  4
75         { "push", 0 },
76 #define NPUSHSW  5
77         { "nopush", 0 },
78 #define VERBSW  6
79         { "verbose", 0 },
80 #define NVERBSW  7
81         { "noverbose", 0 },
82 #define WATCSW  8
83         { "watch", 0 },
84 #define NWATCSW  9
85         { "nowatch", 0 },
86 #define VERSIONSW  10
87         { "version", 0 },
88 #define HELPSW  11
89         { "help", 0 },
90         { NULL, 0 }
91 };
92
93
94 int
95 main(int argc, char **argv)
96 {
97         int msgp = 0, nfiles = 0, distsw = 0, vecp = 1;
98         int msgnum, status;
99         int in, out;
100         char *cp, *maildir = NULL;
101         char buf[BUFSIZ], **ap, **argp, **arguments;
102         char *msgs[MAXARGS], *vec[MAXARGS];
103         char *files[MAXARGS];
104         struct msgs *mp;
105         struct stat st;
106         struct stat st2;
107
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         vec[vecp++] = "-library";
121         vec[vecp++] = getcpy(toabsdir("+"));
122
123         while ((cp = *argp++)) {
124                 if (*cp == '-') {
125                         switch (smatch(++cp, switches)) {
126                         case AMBIGSW:
127                                 ambigsw(cp, switches);
128                                 done(1);
129                         case UNKWNSW:
130                                 adios(NULL, "-%s unknown\n", cp);
131
132                         case HELPSW:
133                                 snprintf(buf, sizeof(buf),
134                                                 "%s [file] [switches]",
135                                                 invo_name);
136                                 print_help(buf, switches, 1);
137                                 done(1);
138                         case VERSIONSW:
139                                 print_version(invo_name);
140                                 done(1);
141
142                         case PUSHSW:
143                                 pushsw++;
144                                 continue;
145                         case NPUSHSW:
146                                 pushsw = 0;
147                                 continue;
148
149                         case FORWSW:
150                                 forwsw++;
151                                 continue;
152                         case NFORWSW:
153                                 forwsw = 0;
154                                 continue;
155
156                         case VERBSW:
157                                 verbsw++;
158                                 vec[vecp++] = --cp;
159                                 continue;
160                         case NVERBSW:
161                                 verbsw = 0;
162                                 vec[vecp++] = --cp;
163                                 continue;
164
165                         case DEBUGSW:
166                                 debugsw++;  /* fall */
167                         case WATCSW:
168                         case NWATCSW:
169                                 vec[vecp++] = --cp;
170                                 continue;
171
172                         case ALIASW:
173                                 vec[vecp++] = --cp;
174                                 if (!(cp = *argp++) || *cp == '-') {
175                                         adios(NULL, "missing argument to %s",
176                                                         argp[-2]);
177                                 }
178                                 vec[vecp++] = cp;
179                                 continue;
180
181                         }
182                 } else {
183                         if (*cp == '/') {
184                                 files[nfiles++] = cp;
185                         } else {
186                                 msgs[msgp++] = cp;
187                         }
188                 }
189         }
190
191         /* check for "Aliasfile:" profile entry */
192         if ((cp = context_find("Aliasfile"))) {
193                 char *dp = NULL;
194
195                 for (ap=brkstring(dp=getcpy(cp), " ", "\n"); ap && *ap; ap++) {
196                         vec[vecp++] = "-alias";
197                         vec[vecp++] = getcpy(etcpath(*ap));
198                 }
199         }
200
201         if (!msgp && !nfiles) {
202                 msgs[msgp++] = seq_cur;
203         }
204         maildir = toabsdir(draftfolder);
205
206         if (chdir(maildir) == NOTOK) {
207                 adios(maildir, "unable to change directory to");
208         }
209
210         if (!(mp = folder_read(draftfolder))) {
211                 adios(NULL, "unable to read draft folder %s", draftfolder);
212         }
213         if (mp->nummsg == 0) {
214                 adios(NULL, "no messages in draft folder %s", draftfolder);
215         }
216         /* parse all the message ranges/sequences and set SELECTED */
217         for (msgnum = 0; msgnum < msgp; msgnum++) {
218                 if (!m_convert(mp, msgs[msgnum])) {
219                         done(1);
220                 }
221         }
222         seq_setprev(mp);
223
224         for (msgp = 0, msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
225                 if (is_selected(mp, msgnum)) {
226                         files[nfiles++] = getcpy(m_name(msgnum));
227                         unset_exists(mp, msgnum);
228                 }
229         }
230
231         mp->msgflags |= SEQMOD;
232         seq_save(mp);
233
234         if (!(cp = getenv("SIGNATURE")) || !*cp) {
235                 if ((cp = context_find("signature")) && *cp) {
236                         m_putenv("SIGNATURE", cp);
237                 }
238         }
239
240         for (msgnum = 0; msgnum < nfiles; msgnum++) {
241                 if (stat(files[msgnum], &st) == NOTOK) {
242                         adios(files[msgnum], "unable to stat draft file");
243                 }
244         }
245
246         if (!(annotext = getenv("mhannotate")) || !*annotext) {
247                 annotext = NULL;
248         }
249         if (!(altmsg = getenv("mhaltmsg")) || !*altmsg) {
250                 altmsg = NULL;  /* used by dist interface - see below */
251         }
252
253         if ((cp = getenv("mhdist")) && *cp && (distsw = atoi(cp)) && altmsg) {
254                 vec[vecp++] = "-dist";
255                 if ((in = open(altmsg, O_RDONLY)) == NOTOK) {
256                         adios(altmsg, "unable to open for reading");
257                 }
258                 fstat(in, &st2);
259                 distfile = getcpy(m_mktemp2(NULL, invo_name, NULL, NULL));
260                 if ((out = creat(distfile, (int)st2.st_mode & 0777))==NOTOK) {
261                         adios(distfile, "unable to open for writing");
262                 }
263                 cpydata(in, out, altmsg, distfile);
264                 close(in);
265                 close(out);
266         } else {
267                 distfile = NULL;
268         }
269
270         if (!altmsg || stat(altmsg, &st) == NOTOK) {
271                 st.st_mtime = 0;
272                 st.st_dev = 0;
273                 st.st_ino = 0;
274         }
275         if (pushsw) {
276                 push();
277         }
278         status = 0;
279         vec[0] = mhbasename(postproc);
280         closefds(3);
281
282         for (msgnum = 0; msgnum < nfiles; msgnum++) {
283                 switch (sendsbr(vec, vecp, files[msgnum], &st, 1)) {
284                 case DONE:
285                         done(++status);
286                 case NOTOK:
287                         status++;  /* fall */
288                 case OK:
289                         break;
290                 }
291         }
292
293         context_save();
294         done(status);
295         return 1;
296 }
297
298
299 /*
300 ** message sending back-end
301 */
302 static int
303 sendsbr(char **vec, int vecp, char *drft, struct stat *st, int rename_drft)
304 {
305         int status;
306         char buffer[BUFSIZ];
307         char *original_draft;
308         char *p;  /* string pointer for building file name */
309
310         /*
311         ** Save the original name of the draft file.  The name of the
312         ** draft file is changed to a temporary file containing the built
313         ** MIME message if there are attachments.  We need the original
314         ** name so that it can be renamed after the message is sent.
315         */
316         original_draft = drft;
317
318         /*
319         ** Convert the draft to a MIME message.
320         ** Use the mhbuild composition file for the draft if there was
321         ** a successful conversion because that now contains the MIME
322         ** message.  A nice side effect of this is that it leaves the
323         ** original draft file untouched so that it can be retrieved
324         ** and modified if desired.
325         */
326         switch (attach(drft)) {
327         case OK:
328                 drft = composition_file_name;
329                 break;
330
331         case NOTOK:
332                 return (NOTOK);
333
334         case DONE:
335                 break;
336         }
337
338         done=armed_done;
339         switch (setjmp(env)) {
340         case OK:
341                 status = sendaux(vec, vecp, drft, st) ? NOTOK : OK;
342                 /* rename the original draft */
343                 if (rename_drft && status == OK &&
344                                 rename(original_draft, strncpy(buffer,
345                                 m_backup(original_draft), sizeof(buffer)))
346                                 == NOTOK) {
347                         advise(buffer, "unable to rename %s to", drft);
348                 }
349                 break;
350
351         default:
352                 status = DONE;
353                 break;
354         }
355
356         done=exit;
357         if (distfile) {
358                 unlink(distfile);
359         }
360
361         /*
362         ** Get rid of any temporary files that we created for attachments.
363         ** Also get rid of the renamed composition file that mhbuild
364         ** leaves as a turd.  It looks confusing, but we use the body
365         ** file name to help build the renamed composition file name.
366         */
367         if (drft == composition_file_name) {
368                 clean_up_temporary_files();
369
370                 if (strlen(composition_file_name) >=
371                                 sizeof (composition_file_name) - 6) {
372                         advise(NULL, "unable to remove original composition file.");
373                 } else {
374                         if (!(p = strrchr(composition_file_name, '/'))) {
375                                 p = composition_file_name;
376                         } else {
377                                 p++;
378                         }
379                         strcpy(body_file_name, p);
380                         *p++ = ',';
381                         strcpy(p, body_file_name);
382                         strcat(p, ".orig");
383
384                         unlink(composition_file_name);
385                 }
386         }
387
388         return status;
389 }
390
391 static int
392 attach(char *draft_file_name)
393 {
394         char buf[MAXPATHLEN + 6];
395         int c;
396         int has_attachment;
397         int has_body;
398         int non_ascii; /* msg body contains non-ASCII chars */
399         int length;  /* length of attachment header field name */
400         char *p;
401
402         if (!(draft_file = fopen(draft_file_name, "r"))) {
403                 adios(NULL, "can't open draft file `%s'.", draft_file_name);
404         }
405
406         /* We'll grow the buffer as needed. */
407         field = (char *)mh_xmalloc(field_size = 256);
408
409         /*
410         ** Scan the draft file for an attachment header field name.
411         */
412         length = strlen(attach_hdr);
413         has_attachment = 0;
414         while (get_line() != EOF && *field != '\0' && *field != '-') {
415                 if (strncasecmp(field, attach_hdr, length)==0 &&
416                                 field[length] == ':') {
417                         has_attachment = 1;
418                 }
419         }
420
421         /*
422         ** Look for at least one non-blank line in the body of the
423         ** message which indicates content in the body.
424         ** Check if body contains at least one non-blank (= not empty)
425         ** and if it contains any non-ASCII chars (= need MIME).
426         */
427         has_body = 0;
428         non_ascii = 0;
429         while (get_line() != EOF) {
430                 for (p = field; *p != '\0'; p++) {
431                         if (*p != ' ' && *p != '\t') {
432                                 has_body = 1;
433                         }
434                         if (*p > 127 || *p < 0) {
435                                 non_ascii = 1;
436                         }
437                 }
438                 if (has_body && non_ascii) {
439                         break;  /* that's been already enough information */
440                 }
441         }
442
443         if (!has_attachment && non_ascii==0) {
444                 /* We don't need to convert it to MIME. */
445                 return DONE;
446         }
447
448         /*
449         ** Else: mimify
450         */
451
452         /* Make names for the temporary files.  */
453         strncpy(body_file_name,
454                         m_mktemp(toabsdir(invo_name), NULL, NULL),
455                         sizeof (body_file_name));
456         strncpy(composition_file_name,
457                         m_mktemp(toabsdir(invo_name), NULL, NULL),
458                         sizeof (composition_file_name));
459
460         if (has_body) {
461                 body_file = fopen(body_file_name, "w");
462         }
463         composition_file = fopen(composition_file_name, "w");
464
465         if ((has_body && !body_file) || !composition_file) {
466                 clean_up_temporary_files();
467                 adios(NULL, "unable to open all of the temporary files.");
468         }
469
470         /* Copy non-attachment header fields to the temp composition file. */
471         rewind(draft_file);
472         while (get_line() != EOF && *field && *field != '-') {
473                 if (strncasecmp(field, attach_hdr, length) != 0 ||
474                                 field[length] != ':') {
475                         fprintf(composition_file, "%s\n", field);
476                 }
477         }
478         fputs("--------\n", composition_file);
479
480         if (has_body) {
481                 /* Copy the message body to the temporary file. */
482                 while ((c = getc(draft_file)) != EOF) {
483                         putc(c, body_file);
484                 }
485                 fclose(body_file);
486
487                 /* Add a mhbuild MIME composition file line for the body */
488                 /* charset will be discovered/guessed by buildmimeproc */
489                 fprintf(composition_file, "#text/plain %s\n", body_file_name);
490         }
491
492         /*
493         ** Now, go back to the beginning of the draft file and look for
494         ** header fields that specify attachments.  Add a mhbuild MIME
495         ** composition file for each.
496         */
497         rewind(draft_file);
498         while (get_line() != EOF && *field && *field != '-') {
499                 if (strncasecmp(field, attach_hdr, length) == 0 &&
500                                 field[length] == ':') {
501                         for (p = field+length+1; *p==' ' || *p=='\t'; p++) {
502                                 continue;
503                         }
504                         if (*p == '+') {
505                                 /* forwarded message */
506                                 fprintf(composition_file, "#forw [forwarded message(s)] %s\n", p);
507                         } else {
508                                 /* regular attachment */
509                                 make_mime_composition_file_entry(p);
510                         }
511                 }
512         }
513         fclose(composition_file);
514
515         /*
516         ** We're ready to roll!  Run mhbuild on the composition file.
517         ** Note that mhbuild is in the context as buildmimeproc.
518         */
519         sprintf(buf, "%s %s", buildmimeproc, composition_file_name);
520
521         if (system(buf) != 0) {
522                 /* some problem */
523                 clean_up_temporary_files();
524                 return (NOTOK);
525         }
526
527         return (OK);
528 }
529
530 static void
531 clean_up_temporary_files(void)
532 {
533         unlink(body_file_name);
534         unlink(composition_file_name);
535
536         return;
537 }
538
539 static int
540 get_line(void)
541 {
542         int c;  /* current character */
543         int n;  /* number of bytes in buffer */
544         char *p;
545
546         /*
547         ** Get a line from the input file, growing the field buffer as
548         ** needed.  We do this so that we can fit an entire line in the
549         ** buffer making it easy to do a string comparison on both the
550         ** field name and the field body which might be a long path name.
551         */
552         for (n = 0, p = field; (c = getc(draft_file)) != EOF; *p++ = c) {
553                 if (c == '\n' && (c = getc(draft_file)) != ' ' && c != '\t') {
554                         ungetc(c, draft_file);
555                         c = '\n';
556                         break;
557                 }
558                 if (++n >= field_size - 1) {
559                         field = (char *)mh_xrealloc(field, field_size += 256);
560                         p = field + n - 1;
561                 }
562         }
563         *p = '\0';
564
565         return (c);
566 }
567
568 static void
569 make_mime_composition_file_entry(char *file_name)
570 {
571         FILE *fp;
572         struct node *np;
573         char *cp;
574         char content_type[BUFSIZ];
575         char cmdbuf[BUFSIZ];
576         char *cmd = mimetypequeryproc;
577
578         for (np = m_defs; np; np = np->n_next) {
579                 if (strcasecmp(np->n_name, mimetypequery)==0) {
580                         cmd = np->n_field;
581                         break;
582                 }
583         }
584         snprintf(cmdbuf, sizeof cmdbuf, "%s %s", cmd, file_name);
585
586         if (!(fp = popen(cmdbuf, "r"))) {
587                 clean_up_temporary_files();
588                 adios(NULL, "unable to determine content type with `%s'",
589                                 cmdbuf);
590         }
591         if (fgets(content_type, sizeof content_type, fp) &&
592                         (cp = strrchr(content_type, '\n'))) {
593                 *cp = '\0';
594         } else {
595                 strcpy(content_type, "application/octet-stream");
596                 admonish(NULL, "problems with `%s', using fall back type `%s'",
597                                 cmdbuf, content_type);
598         }
599         pclose(fp);
600
601         /* TODO: don't use access(2) because it checks for ruid, not euid */
602         if (access(file_name, R_OK) != 0) {
603                 clean_up_temporary_files();
604                 adios(NULL, "unable to access file `%s'", file_name);
605         }
606
607         fprintf(composition_file, "#%s; name=\"%s\" <>{attachment}",
608                 content_type,
609                 (!(cp = strrchr(file_name, '/'))) ? file_name : cp + 1);
610
611         fprintf(composition_file, " %s\n", file_name);
612
613         return;
614 }
615
616 /*
617 ** The back-end of the message sending back-end.
618 ** Annotate original message, and call `postproc' to send message.
619 */
620 static int
621 sendaux(char **vec, int vecp, char *drft, struct stat *st)
622 {
623         pid_t child_id;
624         int i, status, fd;
625         char backup[BUFSIZ];
626
627         /*
628         ** fd collects the output of postproc, and is used for the
629         ** failure notice if we need to send one in alert().
630         */
631         fd = pushsw ? tmp_fd() : NOTOK;
632
633         vec[vecp++] = drft;
634         if (distfile && distout(drft, distfile, backup) == NOTOK) {
635                 done(1);
636         }
637         vec[vecp] = NULL;
638
639         for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++) {
640                 sleep(5);
641         }
642         switch (child_id) {
643         case -1:
644                 /* oops -- fork error */
645                 adios("fork", "unable to");
646                 break;  /* NOT REACHED */
647
648         case 0:
649                 /*
650                 ** child process -- send it
651                 **
652                 ** If fd is ok, then we are pushing and fd points to temp
653                 ** file, so capture anything on stdout and stderr there.
654                 */
655                 if (fd != NOTOK) {
656                         dup2(fd, fileno(stdout));
657                         dup2(fd, fileno(stderr));
658                         close(fd);
659                 }
660                 execvp(postproc, vec);
661                 fprintf(stderr, "unable to exec ");
662                 perror(postproc);
663                 _exit(-1);
664                 break;  /* NOT REACHED */
665
666         default:
667                 /* parent process -- wait for it */
668                 if ((status = pidwait(child_id, NOTOK)) == OK) {
669                         if (annotext) {
670                                 anno(st);
671                         }
672                 } else {
673                         /*
674                         ** If postproc failed, and we have good fd (which
675                         ** means we pushed), then mail error message
676                         ** (and possibly the draft) back to the user.
677                         */
678                         if (fd != NOTOK) {
679                                 alert(drft, fd);
680                                 close(fd);
681                         } else {
682                                 advise(NULL, "message not delivered to anyone");
683                         }
684                         if (distfile) {
685                                 unlink(drft);
686                                 if (rename(backup, drft) == NOTOK) {
687                                         advise(drft, "unable to rename %s to",
688                                                         backup);
689                                 }
690                         }
691                 }
692                 break;
693         }
694
695         return status;
696 }
697
698
699 /*
700 ** Mail error notification (and possibly a copy of the
701 ** message) back to the user, using the mailproc
702 */
703 static void
704 alert(char *file, int out)
705 {
706         pid_t child_id;
707         int i, in;
708         char buf[BUFSIZ];
709
710         for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++) {
711                 sleep(5);
712         }
713
714         switch (child_id) {
715         case NOTOK:
716                 /* oops -- fork error */
717                 advise("fork", "unable to");
718
719         case OK:
720                 /* child process -- send it */
721                 SIGNAL(SIGHUP, SIG_IGN);
722                 SIGNAL(SIGINT, SIG_IGN);
723                 SIGNAL(SIGQUIT, SIG_IGN);
724                 SIGNAL(SIGTERM, SIG_IGN);
725                 if (forwsw) {
726                         if ((in = open(file, O_RDONLY)) == NOTOK) {
727                                 admonish(file, "unable to re-open");
728                         } else {
729                                 lseek(out, (off_t) 0, SEEK_END);
730                                 strncpy(buf, "\nMessage not delivered to anyone.\n", sizeof(buf));
731                                 write(out, buf, strlen(buf));
732                                 strncpy(buf, "\n------- Unsent Draft\n\n", sizeof(buf));
733                                 write(out, buf, strlen(buf));
734                                 cpydgst(in, out, file, "temporary file");
735                                 close(in);
736                                 strncpy(buf, "\n------- End of Unsent Draft\n", sizeof(buf));
737                                 write(out, buf, strlen(buf));
738                                 if (rename(file, strncpy(buf, m_backup(file), sizeof(buf))) == NOTOK) {
739                                         admonish(buf, "unable to rename %s to", file);
740                                 }
741                         }
742                 }
743                 lseek(out, (off_t) 0, SEEK_SET);
744                 dup2(out, fileno(stdin));
745                 close(out);
746                 /* create subject for error notification */
747                 snprintf(buf, sizeof(buf), "send failed on %s",
748                                 forwsw ? "enclosed draft" : file);
749
750                 execlp(mailproc, mhbasename(mailproc), getusername(),
751                                 "-subject", buf, NULL);
752                 fprintf(stderr, "unable to exec ");
753                 perror(mailproc);
754                 _exit(-1);
755
756         default:  /* no waiting... */
757                 break;
758         }
759 }
760
761
762 static int
763 tmp_fd(void)
764 {
765         int fd;
766         char *tfile = NULL;
767
768         tfile = m_mktemp2(NULL, invo_name, &fd, NULL);
769         if (tfile == NULL) return NOTOK;
770         fchmod(fd, 0600);
771
772         if (debugsw) {
773                 advise(NULL, "temporary file %s selected", tfile);
774         } else {
775                 if (unlink(tfile) == NOTOK) {
776                         advise(tfile, "unable to remove");
777                 }
778         }
779
780         return fd;
781 }
782
783
784 static void
785 anno(struct stat *st)
786 {
787         struct stat st2;
788         char *msgs, *folder;
789         char buf[BUFSIZ];
790
791         if (altmsg && (stat(altmsg, &st2) == NOTOK ||
792                         st->st_mtime != st2.st_mtime ||
793                         st->st_dev != st2.st_dev ||
794                         st->st_ino != st2.st_ino)) {
795                 if (debugsw) {
796                         admonish(NULL, "$mhaltmsg mismatch");
797                 }
798                 return;
799         }
800
801         if (!(folder = getenv("mhfolder")) || !*folder) {
802                 if (debugsw) {
803                         admonish(NULL, "$mhfolder not set");
804                 }
805                 return;
806         }
807         if (!(msgs = getenv("mhmessages")) || !*msgs) {
808                 if (debugsw) {
809                         admonish(NULL, "$mhmessages not set");
810                 }
811                 return;
812         }
813         if (debugsw) {
814                 advise(NULL, "annotate as `%s': %s %s", annotext,
815                                 folder, msgs);
816         }
817         snprintf(buf, sizeof buf, "anno -comp '%s' '+%s' %s",
818                         annotext, folder, msgs);
819         if (system(buf) != 0) {
820                 advise(NULL, "unable to annotate");
821         }
822 }
823
824
825 static void
826 armed_done(int status)
827 {
828         longjmp(env, status ? status : NOTOK);
829
830         exit(status);
831 }