3 * sendsbr.c -- routines to help WhatNow/Send along
5 * This code is Copyright (c) 2002, by the authors of nmh. See the
6 * COPYRIGHT file in the root directory of the nmh distribution for
7 * complete copyright information.
11 #include <h/signals.h>
19 #ifdef HAVE_SYS_TIME_H
20 # include <sys/time.h>
24 int debugsw = 0; /* global */
32 char *altmsg = NULL; /* .. */
33 char *annotext = NULL;
34 char *distfile = NULL;
38 static char body_file_name[PATH_MAX + 1]; /* name of temporary file for body content */
39 static char composition_file_name[PATH_MAX + 1]; /* name of mhbuild composition temporary file */
40 static int field_size; /* size of header field buffer */
41 static char *field; /* header field buffer */
42 static FILE *draft_file; /* draft file pointer */
43 static FILE *body_file; /* body file pointer */
44 static FILE *composition_file; /* composition file pointer */
49 int sendsbr (char **, int, char *, struct stat *, int, char *, int);
50 char *getusername (void);
55 static void armed_done (int) NORETURN;
56 static void alert (char *, int);
57 static int tmp_fd (void);
58 static void anno (int, struct stat *);
59 static void annoaux (int);
60 static int splitmsg (char **, int, char *, struct stat *, int);
61 static int sendaux (char **, int, char *, struct stat *);
63 static int attach(char *, char *, int);
64 static void clean_up_temporary_files(void);
65 static int get_line(void);
66 static void make_mime_composition_file_entry(char *, int, char *);
70 * Entry point into (back-end) routines to send message.
74 sendsbr (char **vec, int vecp, char *drft, struct stat *st, int rename_drft, char *attachment_header_field_name, int attachformat)
77 char buffer[BUFSIZ], file[BUFSIZ];
79 char *original_draft; /* name of original draft file */
80 char *p; /* string pointer for building file name */
83 * Save the original name of the draft file. The name of the draft file is changed
84 * to a temporary file containing the built MIME message if there are attachments.
85 * We need the original name so that it can be renamed after the message is sent.
88 original_draft = drft;
91 * There might be attachments if a header field name for attachments is supplied.
92 * Convert the draft to a MIME message. Use the mhbuild composition file for the
93 * draft if there was a successful conversion because that now contains the MIME
94 * message. A nice side effect of this is that it leaves the original draft file
95 * untouched so that it can be retrieved and modified if desired.
98 if (attachment_header_field_name != (char *)0) {
99 switch (attach(attachment_header_field_name, drft, attachformat)) {
101 drft = composition_file_name;
113 switch (setjmp (env)) {
116 * If given -push and -unique (which is undocumented), then
117 * rename the draft file. I'm not quite sure why.
119 if (pushsw && unique) {
120 char *cp = m_mktemp2(drft, invo_name, NULL, NULL);
122 adios ("sendsbr", "unable to create temporary file");
124 if (rename (drft, strncpy(file, cp, sizeof(file))) == NOTOK)
125 adios (file, "unable to rename %s to", drft);
130 * Check if we need to split the message into
131 * multiple messages of type "message/partial".
133 if (splitsw >= 0 && !distfile && stat (drft, &sts) != NOTOK
134 && sts.st_size >= CPERMSG) {
135 status = splitmsg (vec, vecp, drft, st, splitsw) ? NOTOK : OK;
137 status = sendaux (vec, vecp, drft, st) ? NOTOK : OK;
140 /* rename the original draft */
141 if (rename_drft && status == OK &&
142 rename (original_draft, strncpy (buffer, m_backup (original_draft), sizeof(buffer))) == NOTOK)
143 advise (buffer, "unable to rename %s to", drft);
156 * Get rid of any temporary files that we created for attachments. Also get rid of
157 * the renamed composition file that mhbuild leaves as a turd. It looks confusing,
158 * but we use the body file name to help build the renamed composition file name.
161 if (drft == composition_file_name) {
162 clean_up_temporary_files();
164 if (strlen(composition_file_name) >= sizeof (composition_file_name) - 6)
165 advise((char *)0, "unable to remove original composition file.");
168 if ((p = strrchr(composition_file_name, '/')) == (char *)0)
169 p = composition_file_name;
173 (void)strcpy(body_file_name, p);
175 (void)strcpy(p, body_file_name);
176 (void)strcat(p, ".orig");
178 (void)unlink(composition_file_name);
186 attach(char *attachment_header_field_name, char *draft_file_name,
189 char buf[PATH_MAX + 6]; /* miscellaneous buffer */
190 int c; /* current character for body copy */
191 int has_attachment; /* draft has at least one attachment */
192 int has_body; /* draft has a message body */
193 int length; /* length of attachment header field name */
194 char *p; /* miscellaneous string pointer */
195 FILE *fp; /* pointer for mhn.defaults */
198 * Open up the draft file.
201 if ((draft_file = fopen(draft_file_name, "r")) == (FILE *)0)
202 adios((char *)0, "can't open draft file `%s'.", draft_file_name);
205 * Allocate a buffer to hold the header components as they're read in.
206 * This buffer might need to be quite large, so we grow it as needed.
209 field = (char *)mh_xmalloc(field_size = 256);
212 * Scan the draft file for a header field name, with a non-empty
213 * body, that matches the -attach argument. The existence of one
214 * indicates that the draft has attachments. Bail out if there
215 * are no attachments because we're done. Read to the end of the
216 * headers even if we have no attachments.
219 length = strlen(attachment_header_field_name);
223 while (get_line() != EOF && *field != '\0' && *field != '-') {
224 if (strncasecmp(field, attachment_header_field_name, length) == 0 &&
225 field[length] == ':') {
226 for (p = field + length + 1; *p == ' ' || *p == '\t'; p++)
228 if (strlen (p) > 0) {
234 if (has_attachment == 0)
238 * We have at least one attachment. Look for at least one non-blank line
239 * in the body of the message which indicates content in the body.
244 while (get_line() != EOF) {
245 for (p = field; *p != '\0'; p++) {
246 if (*p != ' ' && *p != '\t') {
257 * Make names for the temporary files.
260 (void)strncpy(body_file_name,
261 m_mktemp(m_maildir(invo_name), NULL, NULL),
262 sizeof (body_file_name));
263 (void)strncpy(composition_file_name,
264 m_mktemp(m_maildir(invo_name), NULL, NULL),
265 sizeof (composition_file_name));
268 body_file = fopen(body_file_name, "w");
270 composition_file = fopen(composition_file_name, "w");
272 if ((has_body && body_file == (FILE *)0) || composition_file == (FILE *)0) {
273 clean_up_temporary_files();
274 adios((char *)0, "unable to open all of the temporary files.");
278 * Start at the beginning of the draft file. Copy all
279 * non-attachment header fields to the temporary composition
280 * file. Then add the dashed line separator.
285 while (get_line() != EOF && *field != '\0' && *field != '-')
286 if (strncasecmp(field, attachment_header_field_name, length) != 0 ||
287 field[length] != ':')
288 (void)fprintf(composition_file, "%s\n", field);
290 (void)fputs("--------\n", composition_file);
293 * Copy the message body to a temporary file.
297 while ((c = getc(draft_file)) != EOF)
300 (void)fclose(body_file);
304 * Add a mhbuild MIME composition file line for the body if there was one.
305 * Set the default content type to text/plain so that mhbuild takes care
306 * of any necessary encoding.
310 make_mime_composition_file_entry(body_file_name, attachformat,
314 * Now, go back to the beginning of the draft file and look for
315 * header fields that specify attachments. Add a mhbuild MIME
316 * composition file for each.
319 if ((fp = fopen (p = etcpath ("mhn.defaults"), "r"))) {
320 readconfig ((struct node **) NULL, fp, p, 0);
326 while (get_line() != EOF && *field != '\0' && *field != '-') {
327 if (strncasecmp(field, attachment_header_field_name, length) == 0 &&
328 field[length] == ':') {
329 for (p = field + length + 1; *p == ' ' || *p == '\t'; p++)
332 /* Skip empty attachment_header_field_name lines. */
333 if (strlen (p) > 0) {
335 if (stat (p, &st) == OK) {
336 if (S_ISREG (st.st_mode)) {
337 /* Don't set the default content type so take
338 make_mime_composition_file_entry() will try
339 to infer it from the file type. */
340 make_mime_composition_file_entry(p, attachformat, 0);
342 adios (NULL, "unable to attach %s, not a plain file",
346 adios (NULL, "unable to access file \"%s\"", p);
352 (void)fclose(composition_file);
355 * We're ready to roll! Run mhbuild on the composition file.
356 * Note that mhbuild is in the context as buildmimeproc.
359 (void)sprintf(buf, "%s %s", buildmimeproc, composition_file_name);
361 if (system(buf) != 0) {
362 clean_up_temporary_files();
370 clean_up_temporary_files(void)
372 (void)unlink(body_file_name);
373 (void)unlink(composition_file_name);
381 int c; /* current character */
382 int n; /* number of bytes in buffer */
383 char *p; /* buffer pointer */
386 * Get a line from the input file, growing the field buffer as needed. We do this
387 * so that we can fit an entire line in the buffer making it easy to do a string
388 * comparison on both the field name and the field body which might be a long path
392 for (n = 0, p = field; (c = getc(draft_file)) != EOF; *p++ = c) {
393 if (c == '\n' && (c = getc(draft_file)) != ' ' && c != '\t') {
394 (void)ungetc(c, draft_file);
399 if (++n >= field_size - 1) {
400 field = (char *)mh_xrealloc((void *)field, field_size += 256);
407 * NUL-terminate the field..
416 make_mime_composition_file_entry(char *file_name, int attachformat,
417 char *default_content_type)
419 int binary; /* binary character found flag */
420 int c; /* current character */
421 char cmd[PATH_MAX + 6]; /* file command buffer */
422 char *content_type; /* mime content type */
423 FILE *fp; /* content and pipe file pointer */
424 struct node *np; /* context scan node pointer */
425 char *p; /* miscellaneous string pointer */
426 struct stat st; /* file status buffer */
428 content_type = default_content_type;
431 * Check the file name for a suffix. Scan the context for that suffix on a
432 * mhshow-suffix- entry. We use these entries to be compatible with mhnshow,
433 * and there's no reason to make the user specify each suffix twice. Context
434 * entries of the form "mhshow-suffix-contenttype" in the name have the suffix
435 * in the field, including the dot.
438 if ((p = strrchr(file_name, '.')) != (char *)0) {
439 for (np = m_defs; np; np = np->n_next) {
440 if (strncasecmp(np->n_name, "mhshow-suffix-", 14) == 0 && mh_strcasecmp(p, np->n_field) == 0) {
441 content_type = np->n_name + 14;
448 * No content type was found, either because there was no matching entry in the
449 * context or because the file name has no suffix. Open the file and check for
450 * non-ASCII characters. Choose the content type based on this check.
453 if (content_type == (char *)0) {
454 if ((fp = fopen(file_name, "r")) == (FILE *)0) {
455 clean_up_temporary_files();
456 adios((char *)0, "unable to access file \"%s\"", file_name);
461 while ((c = getc(fp)) != EOF) {
462 if (c > 127 || c < 0) {
470 content_type = binary ? "application/octet-stream" : "text/plain";
474 * Make sure that the attachment file exists and is readable. Append a mhbuild
475 * directive to the draft file. This starts with the content type. Append a
476 * file name attribute and a private x-unix-mode attribute. Also append a
477 * description obtained (if possible) by running the "file" command on the file.
480 if (stat(file_name, &st) == -1 || access(file_name, R_OK) != 0) {
481 clean_up_temporary_files();
482 adios((char *)0, "unable to access file \"%s\"", file_name);
485 switch (attachformat) {
487 /* Insert name, file mode, and Content-Id. */
488 (void)fprintf(composition_file, "#%s; name=\"%s\"; x-unix-mode=0%.3ho",
489 content_type, ((p = strrchr(file_name, '/')) == (char *)0) ? file_name : p + 1, (unsigned short)(st.st_mode & 0777));
491 if (strlen(file_name) > PATH_MAX) {
492 clean_up_temporary_files();
493 adios((char *)0, "attachment file name `%s' too long.", file_name);
496 (void)sprintf(cmd, "file '%s'", file_name);
498 if ((fp = popen(cmd, "r")) != (FILE *)0 && fgets(cmd, sizeof (cmd), fp) != (char *)0) {
499 *strchr(cmd, '\n') = '\0';
502 * The output of the "file" command is of the form
506 * Strip off the "file:" and subsequent white space.
509 for (p = cmd; *p != '\0'; p++) {
511 for (p++; *p != '\0'; p++) {
520 /* Insert Content-Description. */
521 (void)fprintf(composition_file, " [ %s ]", p);
528 if (stringdex (m_maildir(invo_name), file_name) == 0) {
529 /* Content had been placed by send into a temp file.
530 Don't generate Content-Disposition header, because
531 it confuses Microsoft Outlook, Build 10.0.6626, at
533 (void) fprintf (composition_file, "#%s <>", content_type);
535 /* Suppress Content-Id, insert simple Content-Disposition
536 and Content-Description with filename. */
537 p = strrchr(file_name, '/');
538 (void) fprintf (composition_file,
539 "#%s; name=\"%s\" <> [%s]{attachment}",
541 (p == (char *)0) ? file_name : p + 1,
542 (p == (char *)0) ? file_name : p + 1);
547 if (stringdex (m_maildir(invo_name), file_name) == 0) {
548 /* Content had been placed by send into a temp file.
549 Don't generate Content-Disposition header, because
550 it confuses Microsoft Outlook, Build 10.0.6626, at
552 (void) fprintf (composition_file, "#%s <>", content_type);
554 /* Suppress Content-Id, insert Content-Disposition with
555 modification date and Content-Description wtih filename. */
556 p = strrchr(file_name, '/');
557 (void) fprintf (composition_file,
558 "#%s; name=\"%s\" <>[%s]{attachment; modification-date=\"%s\"}",
560 (p == (char *)0) ? file_name : p + 1,
561 (p == (char *)0) ? file_name : p + 1,
562 dtime (&st.st_mtime, 0));
567 adios ((char *)0, "unsupported attachformat %d", attachformat);
571 * Finish up with the file name.
574 (void)fprintf(composition_file, " %s\n", file_name);
580 * Split large message into several messages of
581 * type "message/partial" and send them.
585 splitmsg (char **vec, int vecp, char *drft, struct stat *st, int delay)
587 int compnum, nparts, partno, state, status;
590 char *cp, *dp, buffer[BUFSIZ], msgid[BUFSIZ];
591 char subject[BUFSIZ];
592 char name[NAMESZ], partnum[BUFSIZ];
595 if ((in = fopen (drft, "r")) == NULL)
596 adios (drft, "unable to open for reading");
602 * Scan through the message and examine the various header fields,
603 * as well as locate the beginning of the message body.
605 for (compnum = 1, state = FLD;;) {
606 switch (state = m_getfld (state, name, buffer, sizeof(buffer), in)) {
613 * This header field is discarded.
615 if (!mh_strcasecmp (name, "Message-ID")) {
616 while (state == FLDPLUS)
617 state = m_getfld (state, name, buffer, sizeof(buffer), in);
618 } else if (uprf (name, XXX_FIELD_PRF)
619 || !mh_strcasecmp (name, VRSN_FIELD)
620 || !mh_strcasecmp (name, "Subject")
621 || !mh_strcasecmp (name, "Encrypted")) {
623 * These header fields are copied to the enclosed
624 * header of the first message in the collection
625 * of message/partials. For the "Subject" header
626 * field, we also record it, so that a modified
627 * version of it, can be copied to the header
628 * of each messsage/partial in the collection.
630 if (!mh_strcasecmp (name, "Subject")) {
633 strncpy (subject, buffer, BUFSIZ);
634 sublen = strlen (subject);
635 if (sublen > 0 && subject[sublen - 1] == '\n')
636 subject[sublen - 1] = '\0';
639 dp = add (concat (name, ":", buffer, NULL), dp);
640 while (state == FLDPLUS) {
641 state = m_getfld (state, name, buffer, sizeof(buffer), in);
642 dp = add (buffer, dp);
646 * These header fields are copied to the header of
647 * each message/partial in the collection.
649 cp = add (concat (name, ":", buffer, NULL), cp);
650 while (state == FLDPLUS) {
651 state = m_getfld (state, name, buffer, sizeof(buffer), in);
652 cp = add (buffer, cp);
656 if (state != FLDEOF) {
657 start = ftell (in) + 1;
669 adios (NULL, "message format error in component #%d", compnum);
672 adios (NULL, "getfld () returned %d", state);
678 adios (NULL, "headers missing from draft");
682 while (fgets (buffer, sizeof(buffer) - 1, in)) {
685 if ((pos += (len = strlen (buffer))) > CPERMSG) {
691 /* Only one part, nothing to split */
698 return sendaux (vec, vecp, drft, st);
702 printf ("Sending as %d Partial Messages\n", nparts);
707 vec[vecp++] = "-partno";
708 vec[vecp++] = partnum;
710 vec[vecp++] = "-queued";
713 snprintf (msgid, sizeof(msgid), "%s", message_id (clock, 0));
715 fseek (in, start, SEEK_SET);
716 for (partno = 1; partno <= nparts; partno++) {
720 char *cp = m_mktemp2(drft, invo_name, NULL, &out);
722 adios (drft, "unable to create temporary file for");
724 strncpy(tmpdrf, cp, sizeof(tmpdrf));
725 chmod (tmpdrf, 0600);
728 * Output the header fields
731 fprintf (out, "Subject: %s (part %d of %d)\n", subject, partno, nparts);
732 fprintf (out, "%s: %s\n", VRSN_FIELD, VRSN_VALUE);
733 fprintf (out, "%s: message/partial; id=\"%s\";\n", TYPE_FIELD, msgid);
734 fprintf (out, "\tnumber=%d; total=%d\n", partno, nparts);
735 fprintf (out, "%s: part %d of %d\n\n", DESCR_FIELD, partno, nparts);
738 * If this is the first in the collection, output the
739 * header fields we are encapsulating at the beginning
740 * of the body of the first message.
745 fprintf (out, "Message-ID: %s\n", msgid);
753 if (!fgets (buffer, sizeof(buffer) - 1, in)) {
754 if (partno == nparts)
756 adios (NULL, "premature eof");
759 if ((pos += (len = strlen (buffer))) > CPERMSG) {
760 fseek (in, -len, SEEK_CUR);
768 adios (tmpdrf, "error writing to");
772 if (!pushsw && verbsw) {
777 /* Pause here, if a delay is specified */
778 if (delay > 0 && 1 < partno && partno <= nparts) {
780 printf ("pausing %d seconds before sending part %d...\n",
784 sleep ((unsigned int) delay);
787 snprintf (partnum, sizeof(partnum), "%d", partno);
788 status = sendaux (vec, vecp, tmpdrf, st);
794 * This is so sendaux will only annotate
795 * the altmsg the first time it is called.
804 fclose (in); /* close the draft */
810 * Annotate original message, and
811 * call `postproc' to send message.
815 sendaux (char **vec, int vecp, char *drft, struct stat *st)
818 int i, status, fd, fd2;
819 char backup[BUFSIZ], buf[BUFSIZ];
821 fd = pushsw ? tmp_fd () : NOTOK;
826 if ((fd2 = tmp_fd ()) != NOTOK) {
827 vec[vecp++] = "-idanno";
828 snprintf (buf, sizeof(buf), "%d", fd2);
831 admonish (NULL, "unable to create file for annotation list");
834 if (distfile && distout (drft, distfile, backup) == NOTOK)
838 for (i = 0; (child_id = vfork()) == NOTOK && i < 5; i++)
843 /* oops -- fork error */
844 adios ("fork", "unable to");
845 break; /* NOT REACHED */
849 * child process -- send it
851 * If fd is ok, then we are pushing and fd points to temp
852 * file, so capture anything on stdout and stderr there.
855 dup2 (fd, fileno (stdout));
856 dup2 (fd, fileno (stderr));
859 execvp (postproc, vec);
860 fprintf (stderr, "unable to exec ");
863 break; /* NOT REACHED */
867 * parent process -- wait for it
869 if ((status = pidwait(child_id, NOTOK)) == OK) {
870 if (annotext && fd2 != NOTOK)
874 * If postproc failed, and we have good fd (which means
875 * we pushed), then mail error message (and possibly the
876 * draft) back to the user.
882 advise (NULL, "message not delivered to anyone");
884 if (annotext && fd2 != NOTOK)
888 if (rename (backup, drft) == NOTOK)
889 advise (drft, "unable to rename %s to", backup);
900 * Mail error notification (and possibly a copy of the
901 * message) back to the user, using the mailproc
905 alert (char *file, int out)
911 for (i = 0; (child_id = fork()) == NOTOK && i < 5; i++)
916 /* oops -- fork error */
917 advise ("fork", "unable to");
920 /* child process -- send it */
921 SIGNAL (SIGHUP, SIG_IGN);
922 SIGNAL (SIGINT, SIG_IGN);
923 SIGNAL (SIGQUIT, SIG_IGN);
924 SIGNAL (SIGTERM, SIG_IGN);
926 if ((in = open (file, O_RDONLY)) == NOTOK) {
927 admonish (file, "unable to re-open");
929 lseek (out, (off_t) 0, SEEK_END);
930 strncpy (buf, "\nMessage not delivered to anyone.\n", sizeof(buf));
931 write (out, buf, strlen (buf));
932 strncpy (buf, "\n------- Unsent Draft\n\n", sizeof(buf));
933 write (out, buf, strlen (buf));
934 cpydgst (in, out, file, "temporary file");
936 strncpy (buf, "\n------- End of Unsent Draft\n", sizeof(buf));
937 write (out, buf, strlen (buf));
938 if (rename (file, strncpy (buf, m_backup (file), sizeof(buf))) == NOTOK)
939 admonish (buf, "unable to rename %s to", file);
942 lseek (out, (off_t) 0, SEEK_SET);
943 dup2 (out, fileno (stdin));
945 /* create subject for error notification */
946 snprintf (buf, sizeof(buf), "send failed on %s",
947 forwsw ? "enclosed draft" : file);
949 execlp (mailproc, r1bindex (mailproc, '/'), getusername (),
950 "-subject", buf, NULL);
951 fprintf (stderr, "unable to exec ");
955 default: /* no waiting... */
967 tfile = m_mktemp2(NULL, invo_name, &fd, NULL);
968 if (tfile == NULL) return NOTOK;
972 advise (NULL, "temporary file %s selected", tfile);
974 if (unlink (tfile) == NOTOK)
975 advise (tfile, "unable to remove");
982 anno (int fd, struct stat *st)
986 static char *cwd = NULL;
990 (stat (altmsg, &st2) == NOTOK
991 || st->st_mtime != st2.st_mtime
992 || st->st_dev != st2.st_dev
993 || st->st_ino != st2.st_ino)) {
995 admonish (NULL, "$mhaltmsg mismatch");
999 child_id = debugsw ? NOTOK : fork ();
1001 case NOTOK: /* oops */
1004 "unable to fork, so doing annotations by hand...");
1006 cwd = getcpy (pwd ());
1009 /* block a few signals */
1011 sigaddset (&set, SIGHUP);
1012 sigaddset (&set, SIGINT);
1013 sigaddset (&set, SIGQUIT);
1014 sigaddset (&set, SIGTERM);
1015 sigprocmask (SIG_BLOCK, &set, &oset);
1021 /* reset the signal mask */
1022 sigprocmask (SIG_SETMASK, &oset, &set);
1027 default: /* no waiting... */
1037 int fd2, fd3, msgnum;
1038 char *cp, *folder, *maildir;
1039 char buffer[BUFSIZ], **ap;
1043 if ((folder = getenv ("mhfolder")) == NULL || *folder == 0) {
1045 admonish (NULL, "$mhfolder not set");
1048 maildir = m_maildir (folder);
1049 if (chdir (maildir) == NOTOK) {
1051 admonish (maildir, "unable to change directory to");
1054 if (!(mp = folder_read (folder))) {
1056 admonish (NULL, "unable to read folder %s", folder);
1060 /* check for empty folder */
1061 if (mp->nummsg == 0) {
1063 admonish (NULL, "no messages in %s", folder);
1067 if ((cp = getenv ("mhmessages")) == NULL || *cp == 0) {
1069 admonish (NULL, "$mhmessages not set");
1072 if (!debugsw /* MOBY HACK... */
1074 && (fd3 = open ("/dev/null", O_RDWR)) != NOTOK
1075 && (fd2 = dup (fileno (stderr))) != NOTOK) {
1076 dup2 (fd3, fileno (stderr));
1081 for (ap = brkstring (cp = getcpy (cp), " ", NULL); *ap; ap++)
1082 m_convert (mp, *ap);
1085 dup2 (fd2, fileno (stderr));
1086 if (mp->numsel == 0) {
1088 admonish (NULL, "no messages to annotate");
1092 lseek (fd, (off_t) 0, SEEK_SET);
1093 if ((fp = fdopen (fd, "r")) == NULL) {
1095 admonish (NULL, "unable to fdopen annotation list");
1099 while (fgets (buffer, sizeof(buffer), fp) != NULL)
1100 cp = add (buffer, cp);
1104 advise (NULL, "annotate%s with %s: \"%s\"",
1105 inplace ? " inplace" : "", annotext, cp);
1106 for (msgnum = mp->lowsel; msgnum <= mp->hghsel; msgnum++) {
1107 if (is_selected(mp, msgnum)) {
1109 advise (NULL, "annotate message %d", msgnum);
1110 annotate (m_name (msgnum), annotext, cp, inplace, 1, -2, 0);
1117 folder_free (mp); /* free folder/message structure */
1122 armed_done (int status)
1124 longjmp (env, status ? status : NOTOK);