]>
diplodocus.org Git - nmh/blob - uip/mhshowsbr.c
3 * mhshowsbr.c -- routines to display the contents of MIME messages
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.
12 #include <h/signals.h>
18 #include <h/mhparse.h>
19 #include <h/fmt_scan.h>
23 #endif /* ! HAVE_ICONV */
31 /* flags for moreproc/header display */
37 int part_ok (CT
, int);
38 int type_ok (CT
, int);
39 void content_error (char *, CT
, char *, ...);
40 void flush_errors (void);
45 static void show_single_message (CT
, char *, int, int, int, struct format
*);
46 static void DisplayMsgHeader (CT
, char *, int);
47 static int show_switch (CT
, int, int, int, int, struct format
*);
48 static int show_content (CT
, int, int, int, struct format
*);
49 static int show_content_aux2 (CT
, int, char *, char *, int, int, int, struct format
*);
50 static int show_text (CT
, int, int, struct format
*);
51 static int show_multi (CT
, int, int, int, int, struct format
*);
52 static int show_multi_internal (CT
, int, int, int, int, struct format
*);
53 static int show_multi_aux (CT
, int, char *, struct format
*);
54 static int show_message_rfc822 (CT
, int, struct format
*);
55 static int show_partial (CT
, int);
56 static int show_external (CT
, int, int, int, int, struct format
*);
57 static int parse_display_string (CT
, char *, int *, int *, char *, char *,
58 size_t, int multipart
);
59 static int convert_content_charset (CT
, char **);
60 static struct format
*compile_marker(char *);
61 static void output_marker (CT
, struct format
*, int);
62 static void free_markercomps (void);
63 static int pidcheck(int);
66 * Components (and list of parameters/components) we care about for the
67 * content marker display.
70 static struct comp
*part_comp
= NULL
;
71 static struct comp
*ctype_comp
= NULL
;
72 static struct comp
*description_comp
= NULL
;
73 static struct comp
*dispo_comp
= NULL
;
75 struct param_comp_list
{
78 struct param_comp_list
*next
;
81 static struct param_comp_list
*ctype_pc_list
= NULL
;
82 static struct param_comp_list
*dispo_pc_list
= NULL
;
86 * Top level entry point to show/display a group of messages
90 show_all_messages (CT
*cts
, int concatsw
, int textonly
, int inlineonly
,
97 * If form is not specified, then get default form
98 * for showing headers of MIME messages.
101 formsw
= getcpy (etcpath ("mhl.headers"));
104 * Compile the content marker format line
106 fmt
= compile_marker(markerform
);
109 * If form is "mhl.null", suppress display of header.
111 if (!strcmp (formsw
, "mhl.null"))
114 for (ctp
= cts
; *ctp
; ctp
++) {
117 /* if top-level type is ok, then display message */
119 show_single_message (ct
, formsw
, concatsw
, textonly
, inlineonly
,
129 * Entry point to show/display a single message
133 show_single_message (CT ct
, char *form
, int concatsw
, int textonly
,
134 int inlineonly
, struct format
*fmt
)
140 /* Allow user executable bit so that temporary directories created by
141 * the viewer (e.g., lynx) are going to be accessible */
142 umask (ct
->c_umask
& ~(0100));
145 * If you have a format file, then display
146 * the message headers.
149 DisplayMsgHeader(ct
, form
, concatsw
);
151 /* Show the body of the message */
152 show_switch (ct
, 0, concatsw
, textonly
, inlineonly
, fmt
);
158 if (ct
->c_ceclosefnx
)
159 (*ct
->c_ceclosefnx
) (ct
);
161 /* block a few signals */
163 sigaddset (&set
, SIGHUP
);
164 sigaddset (&set
, SIGINT
);
165 sigaddset (&set
, SIGQUIT
);
166 sigaddset (&set
, SIGTERM
);
167 sigprocmask (SIG_BLOCK
, &set
, &oset
);
169 while (!concatsw
&& wait (&status
) != NOTOK
) {
174 /* reset the signal mask */
175 sigprocmask (SIG_SETMASK
, &oset
, &set
);
182 * Use the mhlproc to show the header fields
186 DisplayMsgHeader (CT ct
, char *form
, int concatsw
)
193 vec
= argsplit(mhlproc
, &file
, &vecp
);
194 vec
[vecp
++] = getcpy("-form");
195 vec
[vecp
++] = getcpy(form
);
196 vec
[vecp
++] = getcpy("-nobody");
197 vec
[vecp
++] = getcpy(ct
->c_file
);
200 * If we've specified -(no)moreproc,
201 * then just pass that along.
203 if (nomore
|| concatsw
) {
204 vec
[vecp
++] = getcpy("-nomoreproc");
206 vec
[vecp
++] = getcpy("-moreproc");
207 vec
[vecp
++] = getcpy(progsw
);
213 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
218 adios ("fork", "unable to");
223 fprintf (stderr
, "unable to exec ");
229 pidcheck(pidwait(child_id
, NOTOK
));
233 arglist_free(file
, vec
);
238 * Switching routine. Call the correct routine
239 * based on content type.
243 show_switch (CT ct
, int alternate
, int concatsw
, int textonly
, int inlineonly
,
246 switch (ct
->c_type
) {
248 return show_multi (ct
, alternate
, concatsw
, textonly
,
252 switch (ct
->c_subtype
) {
253 case MESSAGE_PARTIAL
:
254 return show_partial (ct
, alternate
);
256 case MESSAGE_EXTERNAL
:
257 return show_external (ct
, alternate
, concatsw
, textonly
,
261 return show_message_rfc822 (ct
, alternate
, fmt
);
264 * Treat unknown message types as equivalent to
265 * application/octet-stream for now
268 return show_content (ct
, alternate
, textonly
,
273 return show_text (ct
, alternate
, concatsw
, fmt
);
280 return show_content (ct
, alternate
, textonly
, inlineonly
, fmt
);
283 return 0; /* NOT REACHED */
288 * Generic method for displaying content
292 show_content (CT ct
, int alternate
, int textonly
, int inlineonly
,
296 CI ci
= &ct
->c_ctinfo
;
299 * If we're here, we are not a text type. So we don't need to check
303 if (textonly
|| (inlineonly
&& !is_inline(ct
))) {
304 output_marker(ct
, fmt
, 1);
308 /* Check for invo_name-show-type[/subtype] */
309 if ((cp
= context_find_by_type ("show", ci
->ci_type
, ci
->ci_subtype
)))
310 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
312 if ((cp
= ct
->c_showproc
))
313 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
315 /* complain if we are not a part of a multipart/alternative */
317 content_error (NULL
, ct
, "don't know how to display content");
324 * Parse the display string for displaying generic content
328 show_content_aux (CT ct
, int alternate
, char *cp
, char *cracked
, struct format
*fmt
)
331 int xstdin
= 0, xlist
= 0;
332 char *file
, buffer
[BUFSIZ
];
334 if (!ct
->c_ceopenfnx
) {
336 content_error (NULL
, ct
, "don't know how to decode content");
342 if ((fd
= (*ct
->c_ceopenfnx
) (ct
, &file
)) == NOTOK
)
344 if (ct
->c_showproc
&& !strcmp (ct
->c_showproc
, "true"))
345 return (alternate
? DONE
: OK
);
347 if (! strcmp(invo_name
, "mhshow") &&
348 ct
->c_type
== CT_TEXT
&& ct
->c_subtype
== TEXT_PLAIN
) {
349 /* This has to be done after calling c_ceopenfnx, so
350 unfortunately the type checks are necessary without
351 some code rearrangement. And to make this really ugly,
352 only do it in mhshow, not mhfixmsg, mhn, or mhstore. */
353 if (convert_content_charset (ct
, &file
) == OK
) {
354 (*ct
->c_ceclosefnx
) (ct
);
355 if ((fd
= (*ct
->c_ceopenfnx
) (ct
, &file
)) == NOTOK
)
358 admonish (NULL
, "unable to convert character set%s%s to %s",
359 ct
->c_partno
? " of part " : "",
360 ct
->c_partno
? ct
->c_partno
: "",
361 content_charset (ct
));
366 strncpy (buffer
, cp
, sizeof(buffer
));
370 if (parse_display_string (ct
, cp
, &xstdin
, &xlist
, file
, buffer
,
371 sizeof(buffer
) - 1, 0)) {
372 admonish (NULL
, "Buffer overflow constructing show command!\n");
377 return show_content_aux2 (ct
, alternate
, cracked
, buffer
,
378 fd
, xlist
, xstdin
, fmt
);
383 * Routine to actually display the content
387 show_content_aux2 (CT ct
, int alternate
, char *cracked
, char *buffer
,
388 int fd
, int xlist
, int xstdin
, struct format
*fmt
)
394 if (debugsw
|| cracked
) {
397 fprintf (stderr
, "%s msg %s", cracked
? "storing" : "show",
400 fprintf (stderr
, " part %s", ct
->c_partno
);
402 fprintf (stderr
, " using command (cd %s; %s)\n", cracked
, buffer
);
404 fprintf (stderr
, " using command %s\n", buffer
);
408 output_marker(ct
, fmt
, 0);
412 * If the command is a zero-length string, just write the output on
416 if (buffer
[0] == '\0') {
417 char readbuf
[BUFSIZ
];
419 char lastchar
= '\n';
422 advise(NULL
, "Cannot use NULL command to display content-type "
423 "%s/%s", ct
->c_ctinfo
.ci_type
, ct
->c_ctinfo
.ci_subtype
);
427 while ((cc
= read(fd
, readbuf
, sizeof(readbuf
))) > 0) {
428 fwrite(readbuf
, sizeof(char), cc
, stdout
);
429 lastchar
= readbuf
[cc
- 1];
433 advise("read", "while reading text content");
438 * The MIME standards allow content to not have a trailing newline.
439 * But because we are (presumably) sending this to stdout, include
440 * a newline for text content if the final character was not a
441 * newline. Only do this for mhshow.
444 if (strcmp(invo_name
, "mhshow") == 0 && ct
->c_type
== CT_TEXT
&&
445 ct
->c_subtype
== TEXT_PLAIN
&& lastchar
!= '\n') {
454 vec
= argsplit(buffer
, &file
, &vecp
);
459 for (i
= 0; (child_id
= fork()) == NOTOK
&& i
< 5; i
++)
463 advise ("fork", "unable to");
464 (*ct
->c_ceclosefnx
) (ct
);
474 fprintf (stderr
, "unable to exec ");
480 arglist_free(file
, vec
);
482 pidcheck (pidXwait (child_id
, NULL
));
485 (*ct
->c_ceclosefnx
) (ct
);
486 return (alternate
? DONE
: OK
);
492 * show content of type "text"
496 show_text (CT ct
, int alternate
, int concatsw
, struct format
*fmt
)
498 char *cp
, buffer
[BUFSIZ
];
499 CI ci
= &ct
->c_ctinfo
;
501 /* Check for invo_name-show-type[/subtype] */
502 if ((cp
= context_find_by_type ("show", ci
->ci_type
, ci
->ci_subtype
)))
503 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
506 * Use default method if content is text/plain, or if
507 * if it is not a text part of a multipart/alternative
509 if (!alternate
|| ct
->c_subtype
== TEXT_PLAIN
) {
512 snprintf(buffer
, sizeof(buffer
), "%%lcat");
514 snprintf(buffer
, sizeof(buffer
), "%%l");
516 snprintf (buffer
, sizeof(buffer
), "%%l%s %%F", progsw
? progsw
:
517 moreproc
&& *moreproc
? moreproc
: DEFAULT_PAGER
);
518 cp
= (ct
->c_showproc
= add (buffer
, NULL
));
519 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
527 * show message body of type "multipart"
531 show_multi (CT ct
, int alternate
, int concatsw
, int textonly
, int inlineonly
,
535 CI ci
= &ct
->c_ctinfo
;
537 /* Check for invo_name-show-type[/subtype] */
538 if ((cp
= context_find_by_type ("show", ci
->ci_type
, ci
->ci_subtype
)))
539 return show_multi_aux (ct
, alternate
, cp
, fmt
);
541 if ((cp
= ct
->c_showproc
))
542 return show_multi_aux (ct
, alternate
, cp
, fmt
);
545 * Use default method to display this multipart content. Even
546 * unknown types are displayable, since they're treated as mixed
549 return show_multi_internal (ct
, alternate
, concatsw
, textonly
,
555 * show message body of subtypes of multipart that
556 * we understand directly (mixed, alternate, etc...)
560 show_multi_internal (CT ct
, int alternate
, int concatsw
, int textonly
,
561 int inlineonly
, struct format
*fmt
)
563 int alternating
, nowalternate
, result
;
564 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
570 nowalternate
= alternate
;
572 if (ct
->c_subtype
== MULTI_ALTERNATE
) {
578 * alternate -> we are a part inside an multipart/alternative
579 * alternating -> we are a multipart/alternative
582 result
= alternate
? NOTOK
: OK
;
585 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
588 if (part_ok (p
, 1) && type_ok (p
, 1)) {
593 inneresult
= show_switch (p
, nowalternate
, concatsw
, textonly
,
595 switch (inneresult
) {
597 if (alternate
&& !alternating
) {
610 alternate
= nowalternate
= 0;
620 if (alternating
&& !part
&& any_part_ok
) {
622 content_error (NULL
, ct
, "don't know how to display any of the contents");
633 * Parse display string for multipart content
634 * and use external program to display it.
638 show_multi_aux (CT ct
, int alternate
, char *cp
, struct format
*fmt
)
640 /* xstdin is only used in the call to parse_display_string():
641 its value is ignored in the function. */
642 int xstdin
= 0, xlist
= 0;
643 char *file
, buffer
[BUFSIZ
];
644 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
648 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
651 if (!p
->c_ceopenfnx
) {
653 content_error (NULL
, p
, "don't know how to decode content");
657 if (p
->c_storage
== NULL
) {
659 if ((*p
->c_ceopenfnx
) (p
, &file
) == NOTOK
)
662 p
->c_storage
= add (file
, NULL
);
664 if (p
->c_showproc
&& !strcmp (p
->c_showproc
, "true"))
665 return (alternate
? DONE
: OK
);
666 (*p
->c_ceclosefnx
) (p
);
670 if (parse_display_string (ct
, cp
, &xstdin
, &xlist
, file
,
671 buffer
, sizeof(buffer
) - 1, 1)) {
672 admonish (NULL
, "Buffer overflow constructing show command!\n");
676 return show_content_aux2 (ct
, alternate
, NULL
, buffer
, NOTOK
, xlist
, 0, fmt
);
681 * show content of type "message/rfc822"
685 show_message_rfc822 (CT ct
, int alternate
, struct format
*fmt
)
688 CI ci
= &ct
->c_ctinfo
;
690 /* Check for invo_name-show-type[/subtype] */
691 if ((cp
= context_find_by_type ("show", ci
->ci_type
, ci
->ci_subtype
)))
692 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
694 if ((cp
= ct
->c_showproc
))
695 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
697 /* default method for message/rfc822 */
698 if (ct
->c_subtype
== MESSAGE_RFC822
) {
699 cp
= (ct
->c_showproc
= add ("%pshow -file %F", NULL
));
700 return show_content_aux (ct
, alternate
, cp
, NULL
, fmt
);
703 /* complain if we are not a part of a multipart/alternative */
705 content_error (NULL
, ct
, "don't know how to display content");
712 * Show content of type "message/partial".
716 show_partial (CT ct
, int alternate
)
718 NMH_UNUSED (alternate
);
720 content_error (NULL
, ct
,
721 "in order to display this message, you must reassemble it");
727 * Show content of type "message/external".
729 * THE ERROR CHECKING IN THIS ONE IS NOT DONE YET.
733 show_external (CT ct
, int alternate
, int concatsw
, int textonly
, int inlineonly
,
736 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
737 CT p
= e
->eb_content
;
742 return show_switch (p
, alternate
, concatsw
, textonly
, inlineonly
, fmt
);
747 parse_display_string (CT ct
, char *cp
, int *xstdin
, int *xlist
,
748 char *file
, char *buffer
, size_t buflen
,
751 char *bp
= buffer
, *pp
;
752 CI ci
= &ct
->c_ctinfo
;
754 bp
[0] = bp
[buflen
] = '\0';
756 for ( ; *cp
&& buflen
> 0; cp
++) {
762 /* insert parameters from Content-Type field */
767 for (pm
= ci
->ci_first_pm
; pm
; pm
= pm
->pm_next
) {
768 snprintf (bp
, buflen
, "%s%s=\"%s\"", s
, pm
->pm_name
,
769 get_param_value(pm
, '?'));
779 /* insert content description */
783 s
= trimcpy (ct
->c_descr
);
784 strncpy (bp
, s
, buflen
);
790 /* no longer implemented */
794 /* %f, and stdin is terminal not content */
800 /* insert filename(s) containing content */
801 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
806 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
809 snprintf (bp
, buflen
, "%s%s", s
, p
->c_storage
);
816 /* insert filename containing content */
817 snprintf (bp
, buflen
, "%s", file
);
820 * Old comments below are left here for posterity.
821 * This was/is tricky.
823 /* since we've quoted the file argument, set things up
824 * to look past it, to avoid problems with the quoting
825 * logic below. (I know, I should figure out what's
826 * broken with the quoting logic, but..)
829 * Here's the email that submitted the patch with
831 * https://www.mail-archive.com/nmh-workers@mhost.com/
833 * I can't tell from that exactly what was broken,
834 * beyond misquoting of the filename. The profile
835 * had appearances of %F both with and without quotes.
836 * The unquoted ones should have been quoted by the
838 * The fix was to always quote the filename. But
839 * that broke '%F' because it expanded to ''filename''.
842 * Old comments above are left here for posterity.
843 * The quoting below should work properly now.
849 /* No longer supported */
853 /* display listing prior to displaying content */
858 /* insert subtype of content */
859 strncpy (bp
, ci
->ci_subtype
, buflen
);
863 /* insert character % */
867 const char *closing_brace
= strchr(cp
, '}');
870 const size_t param_len
= closing_brace
- cp
- 1;
871 char *param
= mh_xmalloc(param_len
+ 1);
874 (void) strncpy(param
, cp
+ 1, param_len
);
875 param
[param_len
] = '\0';
876 value
= get_param(ci
->ci_first_pm
, param
, '?', 0);
879 cp
+= param_len
+ 1; /* Skip both braces, too. */
882 /* %{param} is set in the Content-Type header.
883 After the break below, quote it if necessary. */
884 (void) strncpy(bp
, value
, buflen
);
887 /* %{param} not found, so skip it completely. cp
888 was advanced above. */
892 /* This will get confused if there are multiple %{}'s,
893 but its real purpose is to avoid doing bad things
894 above if a closing brace wasn't found. */
896 "no closing brace for display string escape %s",
913 /* Did we actually insert something? */
915 /* Insert single quote if not inside quotes already */
916 if (!quoted
&& buflen
) {
918 memmove (pp
+ 1, pp
, len
+1);
924 /* Escape existing quotes */
925 while ((pp
= strchr (pp
, '\'')) && buflen
> 3) {
928 /* Quoted. Let this quote close that quoting.
929 Insert an escaped quote to replace it and
930 another quote to reopen quoting, which will be
932 memmove (pp
+ 2, pp
, len
);
939 /* Not quoted. This should not be reached with
940 the current code, but handle the condition
941 in case the code changes. Just escape the
943 memmove (pp
, pp
-1, len
+1);
949 /* If pp is still set, that means we ran out of space. */
953 if (quoted
&& buflen
) {
954 /* See if we need to close the quote by looking
955 for an odd number of unescaped close quotes in
956 the remainder of the display string. */
957 int found_quote
= 0, escaped
= 0;
960 for (c
= cp
+1; *c
; ++c
) {
968 found_quote
= ! found_quote
;
993 (ct
->c_termproc
&& buflen
<= strlen(ct
->c_termproc
))) {
994 /* content_error would provide a more useful error message
995 * here, except that if we got overrun, it probably would
1001 /* use charset string to modify display method */
1002 if (ct
->c_termproc
) {
1005 strncpy (term
, buffer
, sizeof(term
));
1006 snprintf (buffer
, buflen
, ct
->c_termproc
, term
);
1014 convert_charset (CT ct
, char *dest_charset
, int *message_mods
) {
1015 char *src_charset
= content_charset (ct
);
1018 if (strcasecmp (src_charset
, dest_charset
)) {
1020 iconv_t conv_desc
= NULL
;
1027 int opened_input_file
= 0;
1028 char src_buffer
[BUFSIZ
];
1029 size_t dest_buffer_size
= BUFSIZ
;
1030 char *dest_buffer
= mh_xmalloc(dest_buffer_size
);
1034 if ((conv_desc
= iconv_open (dest_charset
, src_charset
)) ==
1036 advise (NULL
, "Can't convert %s to %s", src_charset
, dest_charset
);
1040 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, &fd
, NULL
)) == NULL
) {
1041 adios (NULL
, "unable to create temporary file in %s",
1044 dest
= add (tempfile
, NULL
);
1046 if (ct
->c_cefile
.ce_file
) {
1047 file
= &ct
->c_cefile
.ce_file
;
1048 fp
= &ct
->c_cefile
.ce_fp
;
1050 } else if (ct
->c_file
) {
1053 begin
= (size_t) ct
->c_begin
;
1054 end
= (size_t) ct
->c_end
;
1055 } /* else no input file: shouldn't happen */
1057 if (file
&& *file
&& fp
) {
1059 if ((*fp
= fopen (*file
, "r")) == NULL
) {
1060 advise (*file
, "unable to open for reading");
1063 opened_input_file
= 1;
1070 size_t bytes_to_read
=
1071 end
> 0 && end
> begin
? end
- begin
: sizeof src_buffer
;
1073 fseeko (*fp
, begin
, SEEK_SET
);
1074 while ((inbytes
= fread (src_buffer
, 1,
1075 min (bytes_to_read
, sizeof src_buffer
),
1077 ICONV_CONST
char *ib
= src_buffer
;
1078 char *ob
= dest_buffer
;
1079 size_t outbytes
= dest_buffer_size
;
1080 size_t outbytes_before
= outbytes
;
1082 if (end
> 0) bytes_to_read
-= inbytes
;
1085 if (iconv (conv_desc
, &ib
, &inbytes
, &ob
, &outbytes
) ==
1087 if (errno
== E2BIG
) {
1089 * Bump up the buffer by at least a factor of 2
1090 * over what we need.
1092 size_t bumpup
= inbytes
* 2, ob_off
= ob
- dest_buffer
;
1093 dest_buffer_size
+= bumpup
;
1094 dest_buffer
= mh_xrealloc(dest_buffer
,
1096 ob
= dest_buffer
+ ob_off
;
1098 outbytes_before
+= bumpup
;
1104 write (fd
, dest_buffer
, outbytes_before
- outbytes
);
1108 if (opened_input_file
) {
1114 iconv_close (conv_desc
);
1118 /* Replace the decoded file with the converted one. */
1119 if (ct
->c_cefile
.ce_file
) {
1120 if (ct
->c_cefile
.ce_unlink
) {
1121 (void) m_unlink (ct
->c_cefile
.ce_file
);
1123 free (ct
->c_cefile
.ce_file
);
1125 ct
->c_cefile
.ce_file
= dest
;
1126 ct
->c_cefile
.ce_unlink
= 1;
1130 /* Update ct->c_ctline. */
1132 char *ctline
= concat(" ", ct
->c_ctinfo
.ci_type
, "/",
1133 ct
->c_ctinfo
.ci_subtype
, NULL
);
1136 replace_param(&ct
->c_ctinfo
.ci_first_pm
,
1137 &ct
->c_ctinfo
.ci_last_pm
, "charset",
1139 outline
= output_params(strlen(TYPE_FIELD
) + 1 + strlen(ctline
),
1140 ct
->c_ctinfo
.ci_first_pm
, NULL
, 0);
1142 ctline
= add(outline
, ctline
);
1146 free (ct
->c_ctline
);
1147 ct
->c_ctline
= ctline
;
1148 } /* else no CT line, which is odd */
1150 /* Update Content-Type header field. */
1151 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1152 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1153 char *ctline
= concat (ct
->c_ctline
, "\n", NULL
);
1161 (void) m_unlink (dest
);
1164 #else /* ! HAVE_ICONV */
1165 NMH_UNUSED (message_mods
);
1167 advise (NULL
, "Can't convert %s to %s without iconv", src_charset
,
1171 #endif /* ! HAVE_ICONV */
1179 convert_content_charset (CT ct
, char **file
) {
1183 /* Using current locale, see if the content needs to be converted. */
1185 /* content_charset() cannot return NULL. */
1186 char *charset
= content_charset (ct
);
1188 if (! check_charset (charset
, strlen (charset
))) {
1191 char *charset
= getcpy (get_charset ());
1193 if (convert_charset (ct
, charset
, &unused
) == 0) {
1194 *file
= ct
->c_cefile
.ce_file
;
1201 #else /* ! HAVE_ICONV */
1204 #endif /* ! HAVE_ICONV */
1210 * Compile our format string and save any parameters we care about.
1213 #define DEFAULT_MARKER "[ part %{part} - %{content-type} - " \
1214 "%<{description}%{description}" \
1215 "%?{cdispo-filename}%{cdispo-filename}" \
1216 "%|%{ctype-name}%> " \
1217 "%(kilo(size))B %<(unseen)\\(suppressed\\)%> ]"
1219 static struct format
*
1220 compile_marker(char *markerform
)
1224 struct comp
*comp
= NULL
;
1225 unsigned int bucket
;
1226 struct param_comp_list
*pc_entry
;
1228 fmtstring
= new_fs(markerform
, NULL
, DEFAULT_MARKER
);
1230 (void) fmt_compile(fmtstring
, &fmt
, 1);
1234 * Things we care about:
1236 * part - Part name (e.g., 1.1)
1237 * content-type - Content-Type
1238 * description - Content-Description
1239 * disposition - Content-Disposition (inline, attachment)
1240 * ctype-<param> - Content-Type parameter
1241 * cdispo-<param> - Content-Disposition parameter
1244 while ((comp
= fmt_nextcomp(comp
, &bucket
)) != NULL
) {
1245 if (strcasecmp(comp
->c_name
, "part") == 0) {
1247 } else if (strcasecmp(comp
->c_name
, "content-type") == 0) {
1249 } else if (strcasecmp(comp
->c_name
, "description") == 0) {
1250 description_comp
= comp
;
1251 } else if (strcasecmp(comp
->c_name
, "disposition") == 0) {
1253 } else if (strncasecmp(comp
->c_name
, "ctype-", 6) == 0 &&
1254 strlen(comp
->c_name
) > 6) {
1255 pc_entry
= mh_xmalloc(sizeof(*pc_entry
));
1256 pc_entry
->param
= getcpy(comp
->c_name
+ 6);
1257 pc_entry
->comp
= comp
;
1258 pc_entry
->next
= ctype_pc_list
;
1259 ctype_pc_list
= pc_entry
;
1260 } else if (strncasecmp(comp
->c_name
, "cdispo-", 7) == 0 &&
1261 strlen(comp
->c_name
) > 7) {
1262 pc_entry
= mh_xmalloc(sizeof(*pc_entry
));
1263 pc_entry
->param
= getcpy(comp
->c_name
+ 7);
1264 pc_entry
->comp
= comp
;
1265 pc_entry
->next
= dispo_pc_list
;
1266 dispo_pc_list
= pc_entry
;
1274 * Output on stdout an appropriate marker for this content, using mh-format
1278 output_marker(CT ct
, struct format
*fmt
, int hidden
)
1280 char outbuf
[BUFSIZ
];
1281 struct param_comp_list
*pcentry
;
1286 * Grab any items we care about.
1289 if (ctype_comp
&& ct
->c_ctinfo
.ci_type
) {
1290 ctype_comp
->c_text
= concat(ct
->c_ctinfo
.ci_type
, "/",
1291 ct
->c_ctinfo
.ci_subtype
, NULL
);
1294 if (part_comp
&& ct
->c_partno
) {
1295 part_comp
->c_text
= getcpy(ct
->c_partno
);
1298 if (description_comp
&& ct
->c_descr
) {
1299 description_comp
->c_text
= getcpy(ct
->c_descr
);
1302 if (dispo_comp
&& ct
->c_dispo_type
) {
1303 dispo_comp
->c_text
= getcpy(ct
->c_dispo_type
);
1306 for (pcentry
= ctype_pc_list
; pcentry
!= NULL
; pcentry
= pcentry
->next
) {
1307 pcentry
->comp
->c_text
= get_param(ct
->c_ctinfo
.ci_first_pm
,
1308 pcentry
->param
, '?', 0);
1311 for (pcentry
= dispo_pc_list
; pcentry
!= NULL
; pcentry
= pcentry
->next
) {
1312 pcentry
->comp
->c_text
= get_param(ct
->c_dispo_first
,
1313 pcentry
->param
, '?', 0);
1316 if (ct
->c_cesizefnx
)
1317 partsize
= (*ct
->c_cesizefnx
) (ct
);
1319 partsize
= ct
->c_end
- ct
->c_begin
;
1321 /* make the part's hidden aspect available by overloading the
1322 * %(unseen) function. make the part's size available via %(size).
1323 * see comments in h/fmt_scan.h.
1327 dat
[0] = dat
[1] = dat
[3] = 0;
1329 fmt_scan(fmt
, outbuf
, sizeof(outbuf
), sizeof(outbuf
), dat
, NULL
);
1331 fputs(outbuf
, stdout
);
1337 * Reset (and free) any of the saved marker text
1341 free_markercomps(void)
1343 struct param_comp_list
*pc_entry
, *pc2
;
1347 description_comp
= NULL
;
1350 for (pc_entry
= ctype_pc_list
; pc_entry
!= NULL
; ) {
1351 free(pc_entry
->param
);
1352 pc2
= pc_entry
->next
;
1357 for (pc_entry
= dispo_pc_list
; pc_entry
!= NULL
; ) {
1358 free(pc_entry
->param
);
1359 pc2
= pc_entry
->next
;
1366 * Exit if the display process returned with a nonzero exit code, or terminated
1367 * with a SIGQUIT signal.
1371 pidcheck (int status
)
1373 if ((status
& 0xff00) == 0xff00 || (status
& 0x007f) != SIGQUIT
)