3 * sendsbr.c -- routines to help WhatNow/Send along
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.
13 #include <h/signals.h>
21 #ifdef TIME_WITH_SYS_TIME
22 # include <sys/time.h>
25 # ifdef TM_IN_SYS_TIME
26 # include <sys/time.h>
32 int debugsw
= 0; /* global */
40 char *altmsg
= NULL
; /* .. */
41 char *annotext
= NULL
;
42 char *distfile
= NULL
;
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 */
58 int sendsbr (char **, int, char *, struct stat
*, int, char *, int);
60 char *getusername (void);
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
*);
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);
79 * Entry point into (back-end) routines to send message.
83 sendsbr (char **vec
, int vecp
, char *drft
, struct stat
*st
, int rename_drft
, char *attachment_header_field_name
, int attachformat
)
86 char buffer
[BUFSIZ
], file
[BUFSIZ
];
88 char *original_draft
; /* name of original draft file */
89 char *p
; /* string pointer for building file name */
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.
97 original_draft
= drft
;
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.
107 if (attachment_header_field_name
!= (char *)0) {
108 switch (attach(attachment_header_field_name
, drft
, attachformat
)) {
110 drft
= composition_file_name
;
122 switch (setjmp (env
)) {
125 * If given -push and -unique (which is undocumented), then
126 * rename the draft file. I'm not quite sure why.
128 if (pushsw
&& unique
) {
129 if (rename (drft
, strncpy (file
, m_scratch (drft
, invo_name
), sizeof(file
)))
131 adios (file
, "unable to rename %s to", drft
);
136 * Check if we need to split the message into
137 * multiple messages of type "message/partial".
139 if (splitsw
>= 0 && !distfile
&& stat (drft
, &sts
) != NOTOK
140 && sts
.st_size
>= CPERMSG
) {
141 status
= splitmsg (vec
, vecp
, drft
, st
, splitsw
) ? NOTOK
: OK
;
143 status
= sendaux (vec
, vecp
, drft
, st
) ? NOTOK
: OK
;
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
);
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.
167 if (drft
== composition_file_name
) {
168 clean_up_temporary_files();
170 if (strlen(composition_file_name
) >= sizeof (composition_file_name
) - 6)
171 advise((char *)0, "unable to remove original composition file.");
174 if ((p
= strrchr(composition_file_name
, '/')) == (char *)0)
175 p
= composition_file_name
;
179 (void)strcpy(body_file_name
, p
);
181 (void)strcpy(p
, body_file_name
);
182 (void)strcat(p
, ".orig");
184 (void)unlink(composition_file_name
);
192 attach(char *attachment_header_field_name
, char *draft_file_name
,
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 */
203 * Open up the draft file.
206 if ((draft_file
= fopen(draft_file_name
, "r")) == (FILE *)0)
207 adios((char *)0, "can't open draft file `%s'.", draft_file_name
);
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.
214 field
= (char *)mh_xmalloc(field_size
= 256);
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.
223 length
= strlen(attachment_header_field_name
);
227 while (get_line() != EOF
&& *field
!= '\0' && *field
!= '-')
228 if (strncasecmp(field
, attachment_header_field_name
, length
) == 0 && field
[length
] == ':')
231 if (has_attachment
== 0)
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.
241 while (get_line() != EOF
) {
242 for (p
= field
; *p
!= '\0'; p
++) {
243 if (*p
!= ' ' && *p
!= '\t') {
254 * Make names for the temporary files.
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
));
261 body_file
= fopen(body_file_name
, "w");
263 composition_file
= fopen(composition_file_name
, "w");
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.");
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.
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
);
281 (void)fputs("--------\n", composition_file
);
284 * Copy the message body to a temporary file.
288 while ((c
= getc(draft_file
)) != EOF
)
291 (void)fclose(body_file
);
295 * Add a mhbuild MIME composition file line for the body if there was one.
299 make_mime_composition_file_entry(body_file_name
, attachformat
);
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.
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
++)
313 make_mime_composition_file_entry(p
, attachformat
);
317 (void)fclose(composition_file
);
320 * We're ready to roll! Run mhbuild on the composition file. Note that mhbuild
321 * is in the context as buildmimeproc.
324 (void)sprintf(buf
, "%s %s", buildmimeproc
, composition_file_name
);
326 if (system(buf
) != 0) {
327 clean_up_temporary_files();
335 clean_up_temporary_files(void)
337 (void)unlink(body_file_name
);
338 (void)unlink(composition_file_name
);
346 int c
; /* current character */
347 int n
; /* number of bytes in buffer */
348 char *p
; /* buffer pointer */
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
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
);
364 if (++n
>= field_size
- 1) {
365 field
= (char *)mh_xrealloc((void *)field
, field_size
+= 256);
372 * NUL-terminate the field..
381 make_mime_composition_file_entry(char *file_name
, int attachformat
)
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 */
392 content_type
= (char *)0;
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.
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;
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.
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
);
425 while ((c
= getc(fp
)) != EOF
) {
426 if (c
> 127 || c
< 0) {
434 content_type
= binary
? "application/octet-stream" : "text/plain";
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.
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
);
449 switch (attachformat
) {
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));
455 if (strlen(file_name
) > MAXPATHLEN
) {
456 clean_up_temporary_files();
457 adios((char *)0, "attachment file name `%s' too long.", file_name
);
460 (void)sprintf(cmd
, "file '%s'", file_name
);
462 if ((fp
= popen(cmd
, "r")) != (FILE *)0 && fgets(cmd
, sizeof (cmd
), fp
) != (char *)0) {
463 *strchr(cmd
, '\n') = '\0';
466 * The output of the "file" command is of the form
470 * Strip off the "file:" and subsequent white space.
473 for (p
= cmd
; *p
!= '\0'; p
++) {
475 for (p
++; *p
!= '\0'; p
++) {
484 /* Insert Content-Description. */
485 (void)fprintf(composition_file
, " [ %s ]", p
);
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
497 (void) fprintf (composition_file
, "#%s <>", content_type
);
499 /* Suppress Content-Id, insert simple Content-Disposition. */
500 (void) fprintf (composition_file
,
501 "#%s; name=\"%s\" <>{attachment}",
503 ((p
= strrchr(file_name
, '/')) == (char *)0) ? file_name
: p
+ 1);
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
513 (void) fprintf (composition_file
, "#%s <>", content_type
);
515 /* Suppress Content-Id, insert Content-Disposition with
516 modification date. */
517 (void) fprintf (composition_file
,
518 "#%s; name=\"%s\" <>{attachment; modification-date=\"%s\"}",
520 ((p
= strrchr(file_name
, '/')) == (char *)0) ? file_name
: p
+ 1,
521 dtime (&st
.st_mtime
, 0));
526 adios ((char *)0, "unsupported attachformat %d", attachformat
);
530 * Finish up with the file name.
533 (void)fprintf(composition_file
, " %s\n", file_name
);
539 * Split large message into several messages of
540 * type "message/partial" and send them.
544 splitmsg (char **vec
, int vecp
, char *drft
, struct stat
*st
, int delay
)
546 int compnum
, nparts
, partno
, state
, status
;
549 char *cp
, *dp
, buffer
[BUFSIZ
], msgid
[BUFSIZ
];
550 char subject
[BUFSIZ
];
551 char name
[NAMESZ
], partnum
[BUFSIZ
];
554 if ((in
= fopen (drft
, "r")) == NULL
)
555 adios (drft
, "unable to open for reading");
561 * Scan through the message and examine the various header fields,
562 * as well as locate the beginning of the message body.
564 for (compnum
= 1, state
= FLD
;;) {
565 switch (state
= m_getfld (state
, name
, buffer
, sizeof(buffer
), in
)) {
572 * This header field is discarded.
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")) {
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.
589 if (!mh_strcasecmp (name
, "Subject")) {
592 strncpy (subject
, buffer
, BUFSIZ
);
593 sublen
= strlen (subject
);
594 if (sublen
> 0 && subject
[sublen
- 1] == '\n')
595 subject
[sublen
- 1] = '\0';
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
);
605 * These header fields are copied to the header of
606 * each message/partial in the collection.
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
);
615 if (state
!= FLDEOF
) {
616 start
= ftell (in
) + 1;
628 adios (NULL
, "message format error in component #%d", compnum
);
631 adios (NULL
, "getfld () returned %d", state
);
637 adios (NULL
, "headers missing from draft");
641 while (fgets (buffer
, sizeof(buffer
) - 1, in
)) {
644 if ((pos
+= (len
= strlen (buffer
))) > CPERMSG
) {
650 /* Only one part, nothing to split */
657 return sendaux (vec
, vecp
, drft
, st
);
661 printf ("Sending as %d Partial Messages\n", nparts
);
666 vec
[vecp
++] = "-partno";
667 vec
[vecp
++] = partnum
;
669 vec
[vecp
++] = "-queued";
672 snprintf (msgid
, sizeof(msgid
), "<%d.%ld@%s>",
673 (int) getpid(), (long) clock
, LocalName());
675 fseek (in
, start
, SEEK_SET
);
676 for (partno
= 1; partno
<= nparts
; partno
++) {
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);
686 * Output the header fields
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
);
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.
703 fprintf (out
, "Message-ID: %s\n", msgid
);
711 if (!fgets (buffer
, sizeof(buffer
) - 1, in
)) {
712 if (partno
== nparts
)
714 adios (NULL
, "premature eof");
717 if ((pos
+= (len
= strlen (buffer
))) > CPERMSG
) {
718 fseek (in
, -len
, SEEK_CUR
);
726 adios (tmpdrf
, "error writing to");
730 if (!pushsw
&& verbsw
) {
735 /* Pause here, if a delay is specified */
736 if (delay
> 0 && 1 < partno
&& partno
<= nparts
) {
738 printf ("pausing %d seconds before sending part %d...\n",
742 sleep ((unsigned int) delay
);
745 snprintf (partnum
, sizeof(partnum
), "%d", partno
);
746 status
= sendaux (vec
, vecp
, tmpdrf
, st
);
752 * This is so sendaux will only annotate
753 * the altmsg the first time it is called.
762 fclose (in
); /* close the draft */
768 * Annotate original message, and
769 * call `postproc' to send message.
773 sendaux (char **vec
, int vecp
, char *drft
, struct stat
*st
)
776 int i
, status
, fd
, fd2
;
777 char backup
[BUFSIZ
], buf
[BUFSIZ
];
779 fd
= pushsw
? tmp_fd () : NOTOK
;
784 if ((fd2
= tmp_fd ()) != NOTOK
) {
785 vec
[vecp
++] = "-idanno";
786 snprintf (buf
, sizeof(buf
), "%d", fd2
);
789 admonish (NULL
, "unable to create file for annotation list");
792 if (distfile
&& distout (drft
, distfile
, backup
) == NOTOK
)
796 for (i
= 0; (child_id
= vfork()) == NOTOK
&& i
< 5; i
++)
801 /* oops -- fork error */
802 adios ("fork", "unable to");
803 break; /* NOT REACHED */
807 * child process -- send it
809 * If fd is ok, then we are pushing and fd points to temp
810 * file, so capture anything on stdout and stderr there.
813 dup2 (fd
, fileno (stdout
));
814 dup2 (fd
, fileno (stderr
));
817 execvp (postproc
, vec
);
818 fprintf (stderr
, "unable to exec ");
821 break; /* NOT REACHED */
825 * parent process -- wait for it
827 if ((status
= pidwait(child_id
, NOTOK
)) == OK
) {
828 if (annotext
&& fd2
!= NOTOK
)
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.
840 advise (NULL
, "message not delivered to anyone");
842 if (annotext
&& fd2
!= NOTOK
)
846 if (rename (backup
, drft
) == NOTOK
)
847 advise (drft
, "unable to rename %s to", backup
);
858 * Mail error notification (and possibly a copy of the
859 * message) back to the user, using the mailproc
863 alert (char *file
, int out
)
869 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
874 /* oops -- fork error */
875 advise ("fork", "unable to");
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
);
884 if ((in
= open (file
, O_RDONLY
)) == NOTOK
) {
885 admonish (file
, "unable to re-open");
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");
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
);
900 lseek (out
, (off_t
) 0, SEEK_SET
);
901 dup2 (out
, fileno (stdin
));
903 /* create subject for error notification */
904 snprintf (buf
, sizeof(buf
), "send failed on %s",
905 forwsw
? "enclosed draft" : file
);
907 execlp (mailproc
, r1bindex (mailproc
, '/'), getusername (),
908 "-subject", buf
, NULL
);
909 fprintf (stderr
, "unable to exec ");
913 default: /* no waiting... */
925 strncpy (tmpfil
, m_tmpfil (invo_name
), sizeof(tmpfil
));
926 if ((fd
= open (tmpfil
, O_RDWR
| O_CREAT
| O_TRUNC
, 0600)) == NOTOK
)
929 advise (NULL
, "temporary file %s selected", tmpfil
);
931 if (unlink (tmpfil
) == NOTOK
)
932 advise (tmpfil
, "unable to remove");
939 anno (int fd
, struct stat
*st
)
943 static char *cwd
= NULL
;
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
)) {
952 admonish (NULL
, "$mhaltmsg mismatch");
956 child_id
= debugsw
? NOTOK
: fork ();
958 case NOTOK
: /* oops */
961 "unable to fork, so doing annotations by hand...");
963 cwd
= getcpy (pwd ());
966 /* block a few signals */
968 sigaddset (&set
, SIGHUP
);
969 sigaddset (&set
, SIGINT
);
970 sigaddset (&set
, SIGQUIT
);
971 sigaddset (&set
, SIGTERM
);
972 SIGPROCMASK (SIG_BLOCK
, &set
, &oset
);
978 /* reset the signal mask */
979 SIGPROCMASK (SIG_SETMASK
, &oset
, &set
);
984 default: /* no waiting... */
994 int fd2
, fd3
, msgnum
;
995 char *cp
, *folder
, *maildir
;
996 char buffer
[BUFSIZ
], **ap
;
1000 if ((folder
= getenv ("mhfolder")) == NULL
|| *folder
== 0) {
1002 admonish (NULL
, "$mhfolder not set");
1005 maildir
= m_maildir (folder
);
1006 if (chdir (maildir
) == NOTOK
) {
1008 admonish (maildir
, "unable to change directory to");
1011 if (!(mp
= folder_read (folder
))) {
1013 admonish (NULL
, "unable to read folder %s", folder
);
1017 /* check for empty folder */
1018 if (mp
->nummsg
== 0) {
1020 admonish (NULL
, "no messages in %s", folder
);
1024 if ((cp
= getenv ("mhmessages")) == NULL
|| *cp
== 0) {
1026 admonish (NULL
, "$mhmessages not set");
1029 if (!debugsw
/* MOBY HACK... */
1031 && (fd3
= open ("/dev/null", O_RDWR
)) != NOTOK
1032 && (fd2
= dup (fileno (stderr
))) != NOTOK
) {
1033 dup2 (fd3
, fileno (stderr
));
1038 for (ap
= brkstring (cp
= getcpy (cp
), " ", NULL
); *ap
; ap
++)
1039 m_convert (mp
, *ap
);
1042 dup2 (fd2
, fileno (stderr
));
1043 if (mp
->numsel
== 0) {
1045 admonish (NULL
, "no messages to annotate");
1049 lseek (fd
, (off_t
) 0, SEEK_SET
);
1050 if ((fp
= fdopen (fd
, "r")) == NULL
) {
1052 admonish (NULL
, "unable to fdopen annotation list");
1056 while (fgets (buffer
, sizeof(buffer
), fp
) != NULL
)
1057 cp
= add (buffer
, cp
);
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
)) {
1066 advise (NULL
, "annotate message %d", msgnum
);
1067 annotate (m_name (msgnum
), annotext
, cp
, inplace
, 1, -2, 0);
1074 folder_free (mp
); /* free folder/message structure */
1082 longjmp (env
, status
? status
: NOTOK
);
1085 return 1; /* dead code to satisfy the compiler */