2 * mhfixmsg.c -- rewrite a message with various transformations
4 * This code is Copyright (c) 2002 and 2013, by the authors of nmh.
5 * See the COPYRIGHT file in the root directory of the nmh
6 * distribution for complete copyright information.
11 #include <h/mhparse.h>
13 #include <h/signals.h>
16 #define MHFIXMSG_SWITCHES \
17 X("decodetext 8bit|7bit|binary", 0, DECODETEXTSW) \
18 X("nodecodetext", 0, NDECODETEXTSW) \
19 X("decodetypes", 0, DECODETYPESW) \
20 X("crlflinebreaks", 0, CRLFLINEBREAKSSW) \
21 X("nocrlflinebreaks", 0, NCRLFLINEBREAKSSW) \
22 X("textcharset", 0, TEXTCHARSETSW) \
23 X("notextcharset", 0, NTEXTCHARSETSW) \
24 X("reformat", 0, REFORMATSW) \
25 X("noreformat", 0, NREFORMATSW) \
26 X("replacetextplain", 0, REPLACETEXTPLAINSW) \
27 X("noreplacetextplain", 0, NREPLACETEXTPLAINSW) \
28 X("fixboundary", 0, FIXBOUNDARYSW) \
29 X("nofixboundary", 0, NFIXBOUNDARYSW) \
30 X("fixcte", 0, FIXCOMPOSITECTESW) \
31 X("nofixcte", 0, NFIXCOMPOSITECTESW) \
32 X("fixtype mimetype", 0, FIXTYPESW) \
33 X("file file", 0, FILESW) \
34 X("outfile file", 0, OUTFILESW) \
35 X("rmmproc program", 0, RPROCSW) \
36 X("normmproc", 0, NRPRCSW) \
37 X("changecur", 0, CHGSW) \
38 X("nochangecur", 0, NCHGSW) \
39 X("verbose", 0, VERBSW) \
40 X("noverbose", 0, NVERBSW) \
41 X("version", 0, VERSIONSW) \
42 X("help", 0, HELPSW) \
44 #define X(sw, minchars, id) id,
45 DEFINE_SWITCH_ENUM(MHFIXMSG
);
48 #define X(sw, minchars, id) { sw, minchars, id },
49 DEFINE_SWITCH_ARRAY(MHFIXMSG
, switches
);
54 int debugsw
; /* Needed by mhparse.c. */
56 #define quitser pipeser
59 extern int skip_mp_cte_check
; /* flag to InitMultiPart */
60 extern int suppress_bogus_mp_content_warning
; /* flag to InitMultiPart */
61 extern int bogus_mp_content
; /* flag from InitMultiPart */
62 /* flags to/from parse_header_attrs */
63 extern int suppress_extraneous_trailing_semicolon_warning
;
64 extern int extraneous_trailing_semicolon
;
67 int output_message (CT
, char *);
70 void flush_errors (void);
74 void freects_done (int) NORETURN
;
79 typedef struct fix_transformations
{
87 /* Whether to use CRLF linebreaks, per RFC 2046 Sec. 4.1.1, par.1. */
90 } fix_transformations
;
92 int mhfixmsgsbr (CT
*, const fix_transformations
*, char *);
93 static int fix_boundary (CT
*, int *);
94 static int copy_input_to_output (const char *, const char *);
95 static int get_multipart_boundary (CT
, char **);
96 static int replace_boundary (CT
, char *, char *);
97 static int fix_types (CT
, svector_t
, int *);
98 static char *replace_substring (char **, const char *, const char *);
99 static char *remove_parameter (char *, const char *);
100 static int fix_composite_cte (CT
, int *);
101 static int set_ce (CT
, int);
102 static int ensure_text_plain (CT
*, CT
, int *, int);
103 static int find_textplain_sibling (CT
, int, int *);
104 static int insert_new_text_plain_part (CT
, int, CT
);
105 static CT
build_text_plain_part (CT
);
106 static int insert_into_new_mp_alt (CT
*, int *);
107 static CT
divide_part (CT
);
108 static void copy_ctinfo (CI
, CI
);
109 static int decode_part (CT
);
110 static int reformat_part (CT
, char *, char *, char *, int);
111 static CT
build_multipart_alt (CT
, CT
, int, int);
112 static int boundary_in_content (FILE **, char *, const char *);
113 static void transfer_noncontent_headers (CT
, CT
);
114 static int set_ct_type (CT
, int type
, int subtype
, int encoding
);
115 static int decode_text_parts (CT
, int, const char *, int *);
116 static int should_decode(const char *, const char *, const char *);
117 static int content_encoding (CT
, const char **);
118 static int strip_crs (CT
, int *);
119 static void update_cte (CT
);
120 static int least_restrictive_encoding (CT
);
121 static int less_restrictive (int, int);
122 static int convert_charsets (CT
, char *, int *);
123 static int fix_always (CT
, int *);
124 static int fix_filename_param (char *, char *, PM
*, PM
*);
125 static int fix_filename_encoding (CT
);
126 static int write_content (CT
, const char *, char *, int, int);
127 static void set_text_ctparams(CT
, char *, int);
128 static int remove_file (const char *);
129 static void report (char *, char *, char *, char *, ...);
130 static void pipeser (int);
134 main (int argc
, char **argv
) {
136 char *cp
, *file
= NULL
, *folder
= NULL
;
137 char *maildir
, buf
[100], *outfile
= NULL
;
138 char **argp
, **arguments
;
139 struct msgs_array msgs
= { 0, 0, NULL
};
140 struct msgs
*mp
= NULL
;
146 fix_transformations fx
;
147 fx
.reformat
= fx
.fixcompositecte
= fx
.fixboundary
= 1;
149 fx
.replacetextplain
= 0;
150 fx
.decodetext
= CE_8BIT
;
151 fx
.decodetypes
= "text,application/ics"; /* Default, per man page. */
152 fx
.lf_line_endings
= 0;
153 fx
.textcharset
= NULL
;
155 if (nmh_init(argv
[0], 2)) { return 1; }
159 arguments
= getarguments (invo_name
, argc
, argv
, 1);
165 while ((cp
= *argp
++)) {
167 switch (smatch (++cp
, switches
)) {
169 ambigsw (cp
, switches
);
172 adios (NULL
, "-%s unknown", cp
);
175 snprintf (buf
, sizeof buf
, "%s [+folder] [msgs] [switches]",
177 print_help (buf
, switches
, 1);
180 print_version(invo_name
);
184 if (! (cp
= *argp
++) || *cp
== '-') {
185 adios (NULL
, "missing argument to %s", argp
[-2]);
187 if (! strcasecmp (cp
, "8bit")) {
188 fx
.decodetext
= CE_8BIT
;
189 } else if (! strcasecmp (cp
, "7bit")) {
190 fx
.decodetext
= CE_7BIT
;
191 } else if (! strcasecmp (cp
, "binary")) {
192 fx
.decodetext
= CE_BINARY
;
194 adios (NULL
, "invalid argument to %s", argp
[-2]);
201 if (! (cp
= *argp
++) || *cp
== '-') {
202 adios (NULL
, "missing argument to %s", argp
[-2]);
206 case CRLFLINEBREAKSSW
:
207 fx
.lf_line_endings
= 0;
209 case NCRLFLINEBREAKSSW
:
210 fx
.lf_line_endings
= 1;
213 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
214 adios (NULL
, "missing argument to %s", argp
[-2]);
227 case FIXCOMPOSITECTESW
:
228 fx
.fixcompositecte
= 1;
230 case NFIXCOMPOSITECTESW
:
231 fx
.fixcompositecte
= 0;
234 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
235 adios (NULL
, "missing argument to %s", argp
[-2]);
237 if (! strncasecmp (cp
, "multipart/", 10) ||
238 ! strncasecmp (cp
, "message/", 8)) {
239 adios (NULL
, "-fixtype %s not allowed", cp
);
240 } else if (! strchr (cp
, '/')) {
241 adios (NULL
, "-fixtype requires type/subtype");
243 if (fx
.fixtypes
== NULL
) { fx
.fixtypes
= svector_create (10); }
244 svector_push_back (fx
.fixtypes
, cp
);
252 case REPLACETEXTPLAINSW
:
253 fx
.replacetextplain
= 1;
255 case NREPLACETEXTPLAINSW
:
256 fx
.replacetextplain
= 0;
259 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
260 adios (NULL
, "missing argument to %s", argp
[-2]);
262 file
= *cp
== '-' ? add (cp
, NULL
) : path (cp
, TFILE
);
265 if (! (cp
= *argp
++) || (*cp
== '-' && cp
[1])) {
266 adios (NULL
, "missing argument to %s", argp
[-2]);
268 outfile
= *cp
== '-' ? add (cp
, NULL
) : path (cp
, TFILE
);
271 if (!(rmmproc
= *argp
++) || *rmmproc
== '-') {
272 adios (NULL
, "missing argument to %s", argp
[-2]);
292 if (*cp
== '+' || *cp
== '@') {
294 adios (NULL
, "only one folder at a time!");
296 folder
= pluspath (cp
);
300 /* Interpret a full path as a filename, not a message. */
301 file
= add (cp
, NULL
);
303 app_msgarg (&msgs
, cp
);
308 SIGNAL (SIGQUIT
, quitser
);
309 SIGNAL (SIGPIPE
, pipeser
);
312 * Read the standard profile setup
314 if ((fp
= fopen (cp
= etcpath ("mhn.defaults"), "r"))) {
315 readconfig ((struct node
**) 0, fp
, cp
, 0);
319 suppress_bogus_mp_content_warning
= skip_mp_cte_check
= 1;
320 suppress_extraneous_trailing_semicolon_warning
= 1;
322 if (! context_find ("path")) {
323 free (path ("./", TFOLDER
));
326 if (file
&& msgs
.size
) {
327 adios (NULL
, "cannot specify msg and file at same time!");
331 * check if message is coming from file
334 /* If file is stdin, create a tmp file name before parse_mime()
335 has a chance, because it might put in on a different
336 filesystem than the output file. Instead, put it in the
337 user's preferred tmp directory. */
340 if (! strcmp ("-", file
)) {
346 if ((cp
= m_mktemp2 (NULL
, invo_name
, &fd
, NULL
)) == NULL
) {
347 adios (NULL
, "unable to create temporary file in %s",
351 file
= add (cp
, NULL
);
352 cpydata (STDIN_FILENO
, fd
, "-", file
);
356 (void) m_unlink (file
);
357 adios (NULL
, "failed to write temporary file");
361 cts
= mh_xcalloc(2, sizeof *cts
);
364 if ((ct
= parse_mime (file
))) {
365 set_text_ctparams(ct
, fx
.decodetypes
, fx
.lf_line_endings
);
368 advise (NULL
, "unable to parse message from file %s", file
);
371 /* If there's an outfile, pass the input message unchanged, so the message won't
372 get dropped from a pipeline. */
374 /* Something went wrong. Output might be expected, such as if this were run
375 as a filter. Just copy the input to the output. */
376 if (copy_input_to_output (file
, outfile
) != OK
) {
377 advise (NULL
, "unable to copy message to %s, it might be lost\n", outfile
);
383 * message(s) are coming from a folder
388 app_msgarg(&msgs
, "cur");
391 folder
= getfolder (1);
393 maildir
= m_maildir (folder
);
395 if (chdir (maildir
) == NOTOK
) {
396 adios (maildir
, "unable to change directory to");
399 /* read folder and create message structure */
400 if (! (mp
= folder_read (folder
, 1))) {
401 adios (NULL
, "unable to read folder %s", folder
);
404 /* check for empty folder */
405 if (mp
->nummsg
== 0) {
406 adios (NULL
, "no messages in %s", folder
);
409 /* parse all the message ranges/sequences and set SELECTED */
410 for (msgnum
= 0; msgnum
< msgs
.size
; msgnum
++)
411 if (! m_convert (mp
, msgs
.msgs
[msgnum
])) {
414 seq_setprev (mp
); /* set the previous-sequence */
416 cts
= mh_xcalloc(mp
->numsel
+ 1, sizeof *cts
);
419 for (msgnum
= mp
->lowsel
; msgnum
<= mp
->hghsel
; msgnum
++) {
420 if (is_selected(mp
, msgnum
)) {
423 msgnam
= m_name (msgnum
);
424 if ((ct
= parse_mime (msgnam
))) {
425 set_text_ctparams(ct
, fx
.decodetypes
, fx
.lf_line_endings
);
428 advise (NULL
, "unable to parse message %s", msgnam
);
431 /* If there's an outfile, pass the input message unchanged, so the message won't
432 get dropped from a pipeline. */
434 /* Something went wrong. Output might be expected, such as if this were run
435 as a filter. Just copy the input to the output. */
436 const char *input_filename
= path (msgnam
, TFILE
);
438 if (copy_input_to_output (input_filename
, outfile
) != OK
) {
439 advise (NULL
, "unable to copy message to %s, it might be lost\n", outfile
);
447 seq_setcur (mp
, mp
->hghsel
); /* update current message */
449 seq_save (mp
); /* synchronize sequences */
450 context_replace (pfolder
, folder
);/* update current folder */
451 context_save (); /* save the context file */
455 for (ctp
= cts
; *ctp
; ++ctp
) {
456 status
+= mhfixmsgsbr (ctp
, &fx
, outfile
);
459 (void) m_unlink (file
);
462 /* Just calling m_backup() unlinks the backup file. */
463 (void) m_backup (file
);
471 if (fx
.fixtypes
!= NULL
) { svector_free (fx
.fixtypes
); }
477 /* done is freects_done, which will clean up all of cts. */
484 * Apply transformations to one message.
487 mhfixmsgsbr (CT
*ctp
, const fix_transformations
*fx
, char *outfile
) {
488 /* Store input filename in case one of the transformations, i.e.,
489 fix_boundary(), rewrites to a tmp file. */
490 char *input_filename
= add ((*ctp
)->c_file
, NULL
);
491 int modify_inplace
= 0;
492 int message_mods
= 0;
495 if (outfile
== NULL
) {
498 if ((*ctp
)->c_file
) {
500 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, NULL
, NULL
)) == NULL
) {
501 adios (NULL
, "unable to create temporary file in %s",
504 outfile
= add (tempfile
, NULL
);
506 adios (NULL
, "missing both input and output filenames\n");
510 reverse_alternative_parts (*ctp
);
511 status
= fix_always (*ctp
, &message_mods
);
512 if (status
== OK
&& fx
->fixboundary
) {
513 status
= fix_boundary (ctp
, &message_mods
);
515 if (status
== OK
&& fx
->fixtypes
!= NULL
) {
516 status
= fix_types (*ctp
, fx
->fixtypes
, &message_mods
);
518 if (status
== OK
&& fx
->fixcompositecte
) {
519 status
= fix_composite_cte (*ctp
, &message_mods
);
521 if (status
== OK
&& fx
->reformat
) {
523 ensure_text_plain (ctp
, NULL
, &message_mods
, fx
->replacetextplain
);
525 if (status
== OK
&& fx
->decodetext
) {
526 status
= decode_text_parts (*ctp
, fx
->decodetext
, fx
->decodetypes
,
530 if (status
== OK
&& fx
->textcharset
!= NULL
) {
531 status
= convert_charsets (*ctp
, fx
->textcharset
, &message_mods
);
534 if (status
== OK
&& ! (*ctp
)->c_umask
) {
535 /* Set the umask for the contents file. This currently
536 isn't used but just in case it is in the future. */
539 if (stat ((*ctp
)->c_file
, &st
) != NOTOK
) {
540 (*ctp
)->c_umask
= ~(st
.st_mode
& 0777);
542 (*ctp
)->c_umask
= ~m_gmprot();
547 * Write the content to a file
550 status
= write_content (*ctp
, input_filename
, outfile
, modify_inplace
,
552 } else if (! modify_inplace
) {
553 /* Something went wrong. Output might be expected, such
554 as if this were run as a filter. Just copy the input
556 if (copy_input_to_output (input_filename
, outfile
) != OK
) {
557 advise (NULL
, "unable to copy message to %s, it might be lost\n", outfile
);
561 if (modify_inplace
) {
562 if (status
!= OK
) { (void) m_unlink (outfile
); }
567 free (input_filename
);
574 * Copy input message to output. Assumes not modifying in place, so this
575 * might be running as part of a pipeline.
578 copy_input_to_output (const char *input_filename
, const char *output_filename
) {
579 int in
= open (input_filename
, O_RDONLY
);
580 int out
= strcmp (output_filename
, "-")
581 ? open (output_filename
, O_WRONLY
| O_CREAT
, m_gmprot ())
585 if (in
!= -1 && out
!= -1) {
586 cpydata (in
, out
, input_filename
, output_filename
);
599 * Fix mismatched outer level boundary.
602 fix_boundary (CT
*ct
, int *message_mods
) {
603 struct multipart
*mp
;
606 if (ct
&& (*ct
)->c_type
== CT_MULTIPART
&& bogus_mp_content
) {
607 mp
= (struct multipart
*) (*ct
)->c_ctparams
;
610 * 1) Get boundary at end of part.
611 * 2) Get boundary at beginning of part and compare to the end-of-part
613 * 3) Write out contents of ct to tmp file, replacing boundary in
614 * header with boundary from part. Set c_unlink to 1.
616 * 5) Call parse_mime() on the tmp file, replacing ct.
619 if (mp
&& mp
->mp_start
) {
622 if (get_multipart_boundary (*ct
, &part_boundary
) == OK
) {
625 if ((fixed
= m_mktemp2 (NULL
, invo_name
, NULL
, &(*ct
)->c_fp
))) {
626 if (replace_boundary (*ct
, fixed
, part_boundary
) == OK
) {
627 char *filename
= add ((*ct
)->c_file
, NULL
);
631 if ((fixed_ct
= parse_mime (fixed
))) {
637 report (NULL
, NULL
, filename
,
638 "fix multipart boundary");
642 advise (NULL
, "unable to parse fixed part");
647 advise (NULL
, "unable to replace broken boundary");
651 advise (NULL
, "unable to create temporary file in %s",
656 free (part_boundary
);
658 /* Couldn't fix the boundary. Report failure so that mhfixmsg
659 doesn't modify the message. */
663 /* No multipart struct, even though the content type is
664 CT_MULTIPART. Report failure so that mhfixmsg doesn't modify
675 * Find boundary at end of multipart.
678 get_multipart_boundary (CT ct
, char **part_boundary
) {
680 char *end_boundary
= NULL
;
681 off_t begin
= (off_t
) ct
->c_end
> (off_t
) (ct
->c_begin
+ sizeof buffer
)
682 ? (off_t
) (ct
->c_end
- sizeof buffer
)
683 : (off_t
) ct
->c_begin
;
687 /* This will fail if the boundary spans fread() calls. BUFSIZ should
688 be big enough, even if it's just 1024, to make that unlikely. */
690 /* free_content() will close ct->c_fp. */
691 if (! ct
->c_fp
&& (ct
->c_fp
= fopen (ct
->c_file
, "r")) == NULL
) {
692 advise (ct
->c_file
, "unable to open for reading");
696 /* Get boundary at end of multipart. */
697 while (begin
>= (off_t
) ct
->c_begin
) {
698 fseeko (ct
->c_fp
, begin
, SEEK_SET
);
699 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, ct
->c_fp
)) > 0) {
700 char *cp
= rfind_str (buffer
, bytes_read
, "--");
705 /* Trim off trailing "--" and anything beyond. */
707 if ((end
= rfind_str (buffer
, cp
- buffer
, "\n"))) {
708 if (strlen (end
) > 3 && *end
++ == '\n' &&
709 *end
++ == '-' && *end
++ == '-') {
710 end_boundary
= add (end
, NULL
);
717 if (! end_boundary
&& begin
> (off_t
) (ct
->c_begin
+ sizeof buffer
)) {
718 begin
-= sizeof buffer
;
724 /* Get boundary at beginning of multipart. */
726 fseeko (ct
->c_fp
, ct
->c_begin
, SEEK_SET
);
727 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, ct
->c_fp
)) > 0) {
728 if (bytes_read
>= strlen (end_boundary
)) {
729 char *cp
= find_str (buffer
, bytes_read
, end_boundary
);
731 if (cp
&& cp
- buffer
>= 2 && *--cp
== '-' &&
732 *--cp
== '-' && (cp
> buffer
&& *--cp
== '\n')) {
737 /* The start and end boundaries didn't match, or the
738 start boundary doesn't begin with "\n--" (or "--"
739 if at the beginning of buffer). Keep trying. */
748 *part_boundary
= end_boundary
;
750 *part_boundary
= NULL
;
759 * Open and copy ct->c_file to file, replacing the multipart boundary.
762 replace_boundary (CT ct
, char *file
, char *boundary
) {
765 char buf
[BUFSIZ
], name
[NAMESZ
];
767 m_getfld_state_t gstate
= 0;
770 if (ct
->c_file
== NULL
) {
771 advise (NULL
, "missing input filename");
775 if ((fpin
= fopen (ct
->c_file
, "r")) == NULL
) {
776 advise (ct
->c_file
, "unable to open for reading");
780 if ((fpout
= fopen (file
, "w")) == NULL
) {
782 advise (file
, "unable to open for writing");
786 for (compnum
= 1;;) {
787 int bufsz
= (int) sizeof buf
;
789 switch (state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fpin
)) {
794 /* get copies of the buffers */
795 np
= add (name
, NULL
);
796 vp
= add (buf
, NULL
);
798 /* if necessary, get rest of field */
799 while (state
== FLDPLUS
) {
801 state
= m_getfld (&gstate
, name
, buf
, &bufsz
, fpin
);
802 vp
= add (buf
, vp
); /* add to previous value */
805 if (strcasecmp (TYPE_FIELD
, np
)) {
806 fprintf (fpout
, "%s:%s", np
, vp
);
808 char *new_ctline
, *new_params
;
810 replace_param(&ct
->c_ctinfo
.ci_first_pm
,
811 &ct
->c_ctinfo
.ci_last_pm
, "boundary",
814 new_ctline
= concat(" ", ct
->c_ctinfo
.ci_type
, "/",
815 ct
->c_ctinfo
.ci_subtype
, NULL
);
816 new_params
= output_params(strlen(TYPE_FIELD
) +
817 strlen(new_ctline
) + 1,
818 ct
->c_ctinfo
.ci_first_pm
, NULL
, 0);
819 fprintf (fpout
, "%s:%s%s\n", np
, new_ctline
,
820 new_params
? new_params
: "");
834 /* buf will have a terminating NULL, skip it. */
835 if ((int) fwrite (buf
, 1, bufsz
-1, fpout
) < bufsz
-1) {
836 advise (file
, "fwrite");
845 advise (NULL
, "message format error in component #%d", compnum
);
850 advise (NULL
, "getfld() returned %d", state
);
858 m_getfld_state_destroy (&gstate
);
867 * Fix Content-Type header to reflect the content of its part.
870 fix_types (CT ct
, svector_t fixtypes
, int *message_mods
) {
873 switch (ct
->c_type
) {
875 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
878 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
879 status
= fix_types (part
->mp_part
, fixtypes
, message_mods
);
885 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
886 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
888 status
= fix_types (e
->eb_content
, fixtypes
, message_mods
);
895 if (ct
->c_ctinfo
.ci_type
&& ct
->c_ctinfo
.ci_subtype
) {
896 for (typep
= svector_strs (fixtypes
);
897 typep
&& (type
= *typep
);
900 concat (ct
->c_ctinfo
.ci_type
, "/", ct
->c_ctinfo
.ci_subtype
,
903 if (! strcasecmp (type
, type_subtype
) &&
904 decode_part (ct
) == OK
&&
905 ct
->c_cefile
.ce_file
!= NULL
) {
906 char *ct_type_subtype
= mime_type (ct
->c_cefile
.ce_file
);
909 if ((cp
= strchr (ct_type_subtype
, ';'))) {
910 /* Truncate to remove any parameter list from
911 mime_type () result. */
915 if (strcasecmp (type
, ct_type_subtype
)) {
916 char *ct_type
, *ct_subtype
;
919 /* The Content-Type header does not match the
920 content, so update these struct Content
923 * c_ctinfo.ci_type, c_ctinfo.ci_subtype
926 /* Extract type and subtype from type/subtype. */
927 ct_type
= getcpy (ct_type_subtype
);
928 if ((cp
= strchr (ct_type
, '/'))) {
930 ct_subtype
= getcpy (++cp
);
932 advise (NULL
, "missing / in MIME type of %s %s",
933 ct
->c_file
, ct
->c_partno
);
938 ct
->c_type
= ct_str_type (ct_type
);
939 ct
->c_subtype
= ct_str_subtype (ct
->c_type
, ct_subtype
);
941 free (ct
->c_ctinfo
.ci_type
);
942 ct
->c_ctinfo
.ci_type
= ct_type
;
943 free (ct
->c_ctinfo
.ci_subtype
);
944 ct
->c_ctinfo
.ci_subtype
= ct_subtype
;
945 if (! replace_substring (&ct
->c_ctline
, type
,
947 advise (NULL
, "did not find %s in %s",
951 /* Update Content-Type header field. */
952 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
953 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
954 if (replace_substring (&hf
->value
, type
,
958 report (NULL
, ct
->c_partno
, ct
->c_file
,
959 "change Content-Type in header "
961 type
, ct_type_subtype
);
965 advise (NULL
, "did not find %s in %s",
971 free (ct_type_subtype
);
983 * Replace a substring, allocating space to hold the new one.
986 replace_substring (char **str
, const char *old
, const char *new) {
989 if ((cp
= strstr (*str
, old
))) {
990 char *remainder
= cp
+ strlen (old
);
991 char *prefix
, *new_str
;
994 prefix
= getcpy (*str
);
995 *(prefix
+ (cp
- *str
)) = '\0';
996 new_str
= concat (prefix
, new, remainder
, NULL
);
999 new_str
= concat (new, remainder
, NULL
);
1004 return *str
= new_str
;
1012 * Remove a name=value parameter, given just its name, from a header value.
1015 remove_parameter (char *str
, const char *name
) {
1016 /* It looks to me, based on the BNF in RFC 2045, than there can't
1017 be whitespace betwwen the parameter name and the "=", or
1018 between the "=" and the parameter value. */
1019 char *param_name
= concat (name
, "=", NULL
);
1022 if ((cp
= strstr (str
, param_name
))) {
1026 /* Remove any leading spaces, before the parameter name. */
1028 start
> str
&& isspace ((unsigned char) *(start
-1));
1032 /* Remove a leading semicolon. */
1033 if (start
> str
&& *(start
-1) == ';') { --start
; }
1035 end
= cp
+ strlen (name
) + 1;
1037 /* Skip past the quoted value, and then the final quote. */
1038 for (++end
; *end
&& *end
!= '"'; ++end
) { continue; }
1041 /* Skip past the value. */
1042 for (++end
; *end
&& ! isspace ((unsigned char) *end
); ++end
) {}
1045 /* Count how many characters need to be moved. Include
1046 trailing null, which is accounted for by the
1047 initialization of count to 1. */
1048 for (cp
= end
; *cp
; ++cp
) { ++count
; }
1049 (void) memmove (start
, end
, count
);
1059 * Fix Content-Transfer-Encoding of composite,, e.g., message or multipart, part.
1060 * According to RFC 2045 Sec. 6.4, it must be 7bit, 8bit, or binary. Set it to
1064 fix_composite_cte (CT ct
, int *message_mods
) {
1067 if (ct
->c_type
== CT_MESSAGE
|| ct
->c_type
== CT_MULTIPART
) {
1068 if (ct
->c_encoding
!= CE_7BIT
&& ct
->c_encoding
!= CE_8BIT
&&
1069 ct
->c_encoding
!= CE_BINARY
) {
1072 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1073 char *name
= hf
->name
;
1074 for (; *name
&& isspace ((unsigned char) *name
); ++name
) {
1078 if (! strncasecmp (name
, ENCODING_FIELD
,
1079 strlen (ENCODING_FIELD
))) {
1080 char *prefix
= "Nmh-REPLACED-INVALID-";
1084 h
->name
= add (hf
->name
, NULL
);
1085 h
->hf_encoding
= hf
->hf_encoding
;
1089 /* Retain old header but prefix its name. */
1091 hf
->name
= concat (prefix
, h
->name
, NULL
);
1095 char *encoding
= cpytrim (hf
->value
);
1096 report (NULL
, ct
->c_partno
, ct
->c_file
,
1097 "replace Content-Transfer-Encoding of %s "
1098 "with 8 bit", encoding
);
1102 h
->value
= add (" 8bit\n", NULL
);
1104 /* Don't need to warn for multiple C-T-E header
1105 fields, parse_mime() already does that. But
1106 if there are any, fix them all as necessary. */
1111 set_ce (ct
, CE_8BIT
);
1114 if (ct
->c_type
== CT_MULTIPART
) {
1115 struct multipart
*m
;
1118 m
= (struct multipart
*) ct
->c_ctparams
;
1119 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
1120 if (fix_composite_cte (part
->mp_part
, message_mods
) != OK
) {
1133 * Set content encoding.
1136 set_ce (CT ct
, int encoding
) {
1137 const char *ce
= ce_str (encoding
);
1138 const struct str2init
*ctinit
= get_ce_method (ce
);
1141 char *cte
= concat (" ", ce
, "\n", NULL
);
1144 /* Decoded contents might be in ct->c_cefile.ce_file, if the
1145 caller is decode_text_parts (). Save because we'll
1147 struct cefile decoded_content_info
= ct
->c_cefile
;
1149 ct
->c_encoding
= encoding
;
1151 ct
->c_ctinitfnx
= ctinit
->si_init
;
1152 /* This will assign ct->c_cefile with an all-0 struct, which
1154 (*ctinit
->si_init
) (ct
);
1155 /* After returning, the caller should set
1156 ct->c_cefile.ce_file to the name of the file containing
1159 if (ct
->c_ceclosefnx
) {
1160 (*ct
->c_ceclosefnx
) (ct
);
1163 /* Restore the cefile. */
1164 ct
->c_cefile
= decoded_content_info
;
1166 /* Update/add Content-Transfer-Encoding header field. */
1167 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1168 if (! strcasecmp (ENCODING_FIELD
, hf
->name
)) {
1175 add_header (ct
, add (ENCODING_FIELD
, NULL
), cte
);
1178 /* Update c_celine. It's used only by mhlist -debug. */
1179 free (ct
->c_celine
);
1180 ct
->c_celine
= add (cte
, NULL
);
1190 * Make sure each text part has a corresponding text/plain part.
1193 ensure_text_plain (CT
*ct
, CT parent
, int *message_mods
, int replacetextplain
) {
1196 switch ((*ct
)->c_type
) {
1198 /* Nothing to do for text/plain. */
1199 if ((*ct
)->c_subtype
== TEXT_PLAIN
) { return OK
; }
1201 if (parent
&& parent
->c_type
== CT_MULTIPART
&&
1202 parent
->c_subtype
== MULTI_ALTERNATE
) {
1203 int new_subpart_number
= 1;
1204 int has_text_plain
=
1205 find_textplain_sibling (parent
, replacetextplain
,
1206 &new_subpart_number
);
1208 if (! has_text_plain
) {
1209 /* Parent is a multipart/alternative. Insert a new
1210 text/plain subpart. */
1211 const int inserted
=
1212 insert_new_text_plain_part (*ct
, new_subpart_number
,
1217 report (NULL
, parent
->c_partno
, parent
->c_file
,
1218 "insert text/plain part");
1224 } else if (parent
&& parent
->c_type
== CT_MULTIPART
&&
1225 parent
->c_subtype
== MULTI_RELATED
) {
1226 char *type_subtype
=
1227 concat ((*ct
)->c_ctinfo
.ci_type
, "/",
1228 (*ct
)->c_ctinfo
.ci_subtype
, NULL
);
1229 const char *parent_type
=
1230 get_param (parent
->c_ctinfo
.ci_first_pm
, "type", '?', 1);
1231 int new_subpart_number
= 1;
1232 int has_text_plain
= 0;
1234 /* Have to do string comparison on the subtype because we
1235 don't enumerate all of them in c_subtype values.
1236 parent_type will be NULL if the multipart/related part
1237 doesn't have a type parameter. The type parameter must
1238 be specified according to RFC 2387 Sec. 3.1 but not all
1240 if (parent_type
&& strcasecmp (type_subtype
, parent_type
) == 0) {
1241 /* The type of this part matches the root type of the
1242 parent multipart/related. Look to see if there's
1243 text/plain sibling. */
1245 find_textplain_sibling (parent
, replacetextplain
,
1246 &new_subpart_number
);
1249 free (type_subtype
);
1251 if (! has_text_plain
) {
1252 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
1256 for (part
= mp
->mp_parts
; part
; part
= part
->mp_next
) {
1257 if (*ct
!= part
->mp_part
) {
1263 /* Parent is a multipart/related. Insert a new
1264 text/plain subpart in a new multipart/alternative. */
1265 if (insert_into_new_mp_alt (ct
, message_mods
)) {
1266 /* Not an error if text/plain couldn't be added. */
1269 /* There are no siblings, so insert a new text/plain
1270 subpart, and change the parent type from
1271 multipart/related to multipart/alternative. */
1272 const int inserted
=
1273 insert_new_text_plain_part (*ct
, new_subpart_number
,
1279 parent
->c_subtype
= MULTI_ALTERNATE
;
1280 parent
->c_ctinfo
.ci_subtype
= mh_xstrdup("alternative");
1281 if (! replace_substring (&parent
->c_ctline
, "/related",
1284 "did not find multipart/related in %s",
1288 /* Update Content-Type header field. */
1289 for (hf
= parent
->c_first_hf
; hf
; hf
= hf
->next
) {
1290 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1291 if (replace_substring (&hf
->value
, "/related",
1295 report (NULL
, parent
->c_partno
,
1297 "insert text/plain part");
1300 /* Remove, e.g., type="text/html" from
1301 multipart/alternative. */
1302 remove_parameter (hf
->value
, "type");
1305 advise (NULL
, "did not find multipart/"
1306 "related in header %s",
1312 /* Not an error if text/plain couldn't be inserted. */
1317 if (insert_into_new_mp_alt (ct
, message_mods
)) {
1324 case CT_MULTIPART
: {
1325 struct multipart
*mp
= (struct multipart
*) (*ct
)->c_ctparams
;
1328 for (part
= mp
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
1329 if ((*ct
)->c_type
== CT_MULTIPART
) {
1330 status
= ensure_text_plain (&part
->mp_part
, *ct
, message_mods
,
1338 if ((*ct
)->c_subtype
== MESSAGE_EXTERNAL
) {
1339 struct exbody
*e
= (struct exbody
*) (*ct
)->c_ctparams
;
1341 status
= ensure_text_plain (&e
->eb_content
, *ct
, message_mods
,
1352 * See if there is a sibling text/plain, and return its subpart number.
1355 find_textplain_sibling (CT parent
, int replacetextplain
,
1356 int *new_subpart_number
) {
1357 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
1358 struct part
*part
, *prev
;
1359 int has_text_plain
= 0;
1361 for (prev
= part
= mp
->mp_parts
; part
; part
= part
->mp_next
) {
1362 ++*new_subpart_number
;
1363 if (part
->mp_part
->c_type
== CT_TEXT
&&
1364 part
->mp_part
->c_subtype
== TEXT_PLAIN
) {
1365 if (replacetextplain
) {
1366 struct part
*old_part
;
1367 if (part
== mp
->mp_parts
) {
1368 old_part
= mp
->mp_parts
;
1369 mp
->mp_parts
= part
->mp_next
;
1371 old_part
= prev
->mp_next
;
1372 prev
->mp_next
= part
->mp_next
;
1375 report (NULL
, parent
->c_partno
, parent
->c_file
,
1376 "remove text/plain part %s",
1377 old_part
->mp_part
->c_partno
);
1379 free_content (old_part
->mp_part
);
1389 return has_text_plain
;
1394 * Insert a new text/plain part.
1397 insert_new_text_plain_part (CT ct
, int new_subpart_number
, CT parent
) {
1398 struct multipart
*mp
= (struct multipart
*) parent
->c_ctparams
;
1399 struct part
*new_part
;
1402 if ((new_part
->mp_part
= build_text_plain_part (ct
))) {
1404 snprintf (buffer
, sizeof buffer
, "%d", new_subpart_number
);
1406 new_part
->mp_next
= mp
->mp_parts
;
1407 mp
->mp_parts
= new_part
;
1408 new_part
->mp_part
->c_partno
=
1409 concat (parent
->c_partno
? parent
->c_partno
: "1", ".",
1414 free_content (new_part
->mp_part
);
1423 * Create a text/plain part to go along with non-plain sibling part.
1426 build_text_plain_part (CT encoded_part
) {
1427 CT tp_part
= divide_part (encoded_part
);
1428 char *tmp_plain_file
= NULL
;
1430 if (decode_part (tp_part
) == OK
) {
1431 /* Now, tp_part->c_cefile.ce_file is the name of the tmp file that
1432 contains the decoded contents. And the decoding function, such
1433 as openQuoted, will have set ...->ce_unlink to 1 so that it will
1434 be unlinked by free_content (). */
1437 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, NULL
, NULL
)) == NULL
) {
1438 advise (NULL
, "unable to create temporary file in %s",
1441 tmp_plain_file
= add (tempfile
, NULL
);
1442 if (reformat_part (tp_part
, tmp_plain_file
,
1443 tp_part
->c_ctinfo
.ci_type
,
1444 tp_part
->c_ctinfo
.ci_subtype
,
1445 tp_part
->c_type
) == OK
) {
1451 free_content (tp_part
);
1452 if (tmp_plain_file
) { (void) m_unlink (tmp_plain_file
); }
1453 free (tmp_plain_file
);
1460 * Slip new text/plain part into a new multipart/alternative.
1463 insert_into_new_mp_alt (CT
*ct
, int *message_mods
) {
1464 CT tp_part
= build_text_plain_part (*ct
);
1468 CT mp_alt
= build_multipart_alt (*ct
, tp_part
, CT_MULTIPART
,
1471 struct multipart
*mp
= (struct multipart
*) mp_alt
->c_ctparams
;
1473 if (mp
&& mp
->mp_parts
) {
1474 mp
->mp_parts
->mp_part
= tp_part
;
1475 /* Make the new multipart/alternative the parent. */
1480 report (NULL
, (*ct
)->c_partno
, (*ct
)->c_file
,
1481 "insert text/plain part");
1484 free_content (tp_part
);
1485 free_content (mp_alt
);
1492 /* Not an error if text/plain couldn't be built. */
1500 * Clone a MIME part.
1503 divide_part (CT ct
) {
1507 /* Just copy over what is needed for decoding. c_vrsn and
1508 c_celine aren't necessary. */
1509 new_part
->c_file
= add (ct
->c_file
, NULL
);
1510 new_part
->c_begin
= ct
->c_begin
;
1511 new_part
->c_end
= ct
->c_end
;
1512 copy_ctinfo (&new_part
->c_ctinfo
, &ct
->c_ctinfo
);
1513 new_part
->c_type
= ct
->c_type
;
1514 new_part
->c_cefile
= ct
->c_cefile
;
1515 new_part
->c_encoding
= ct
->c_encoding
;
1516 new_part
->c_ctinitfnx
= ct
->c_ctinitfnx
;
1517 new_part
->c_ceopenfnx
= ct
->c_ceopenfnx
;
1518 new_part
->c_ceclosefnx
= ct
->c_ceclosefnx
;
1519 new_part
->c_cesizefnx
= ct
->c_cesizefnx
;
1521 /* c_ctline is used by reformat__part(), so it can preserve
1522 anything after the type/subtype. */
1523 new_part
->c_ctline
= add (ct
->c_ctline
, NULL
);
1530 * Copy the content info from one part to another.
1533 copy_ctinfo (CI dest
, CI src
) {
1536 dest
->ci_type
= src
->ci_type
? add (src
->ci_type
, NULL
) : NULL
;
1537 dest
->ci_subtype
= src
->ci_subtype
? add (src
->ci_subtype
, NULL
) : NULL
;
1539 for (s_pm
= src
->ci_first_pm
; s_pm
; s_pm
= s_pm
->pm_next
) {
1540 d_pm
= add_param(&dest
->ci_first_pm
, &dest
->ci_last_pm
, s_pm
->pm_name
,
1542 if (s_pm
->pm_charset
) {
1543 d_pm
->pm_charset
= getcpy(s_pm
->pm_charset
);
1545 if (s_pm
->pm_lang
) {
1546 d_pm
->pm_lang
= getcpy(s_pm
->pm_lang
);
1550 dest
->ci_comment
= src
->ci_comment
? add (src
->ci_comment
, NULL
) : NULL
;
1551 dest
->ci_magic
= src
->ci_magic
? add (src
->ci_magic
, NULL
) : NULL
;
1559 decode_part (CT ct
) {
1564 if ((tempfile
= m_mktemp2 (NULL
, invo_name
, NULL
, NULL
)) == NULL
) {
1565 adios (NULL
, "unable to create temporary file in %s", get_temp_dir());
1567 tmp_decoded
= add (tempfile
, NULL
);
1568 /* The following call will load ct->c_cefile.ce_file with the tmp
1569 filename of the decoded content. tmp_decoded will contain the
1570 encoded output, get rid of that. */
1571 status
= output_message (ct
, tmp_decoded
);
1572 (void) m_unlink (tmp_decoded
);
1580 * Reformat content as plain text.
1581 * Some of the arguments aren't really needed now, but maybe will
1582 * be in the future for other than text types.
1585 reformat_part (CT ct
, char *file
, char *type
, char *subtype
, int c_type
) {
1586 int output_subtype
, output_encoding
;
1587 const char *reason
= NULL
;
1591 /* Hacky: this redirects the output from whatever command is used
1592 to show the part to a file. So, the user can't have any output
1593 redirection in that command.
1594 Could show_multi() in mhshowsbr.c avoid this? */
1596 /* Check for invo_name-format-type/subtype. */
1597 if ((cf
= context_find_by_type ("format", type
, subtype
)) == NULL
) {
1599 advise (NULL
, "Don't know how to convert %s, there is no "
1600 "%s-format-%s/%s profile entry",
1601 ct
->c_file
, invo_name
, type
, subtype
);
1605 if (strchr (cf
, '>')) {
1606 advise (NULL
, "'>' prohibited in \"%s\",\nplease fix your "
1607 "%s-format-%s/%s profile entry", cf
, invo_name
, type
,
1608 subtype
? subtype
: "");
1614 cp
= concat (cf
, " >", file
, NULL
);
1615 status
= show_content_aux (ct
, 0, cp
, NULL
, NULL
);
1618 /* Unlink decoded content tmp file and free its filename to avoid
1619 leaks. The file stream should already have been closed. */
1620 if (ct
->c_cefile
.ce_unlink
) {
1621 (void) m_unlink (ct
->c_cefile
.ce_file
);
1622 free (ct
->c_cefile
.ce_file
);
1623 ct
->c_cefile
.ce_file
= NULL
;
1624 ct
->c_cefile
.ce_unlink
= 0;
1627 if (c_type
== CT_TEXT
) {
1628 output_subtype
= TEXT_PLAIN
;
1630 /* Set subtype to 0, which is always an UNKNOWN subtype. */
1634 output_encoding
= content_encoding (ct
, &reason
);
1635 if (set_ct_type (ct
, c_type
, output_subtype
, output_encoding
) == OK
) {
1636 ct
->c_cefile
.ce_file
= file
;
1637 ct
->c_cefile
.ce_unlink
= 1;
1639 ct
->c_cefile
.ce_unlink
= 0;
1648 * Fill in a multipart/alternative part.
1651 build_multipart_alt (CT first_alt
, CT new_part
, int type
, int subtype
) {
1652 char *boundary_prefix
= "----=_nmh-multipart";
1653 char *boundary
= concat (boundary_prefix
, first_alt
->c_partno
, NULL
);
1654 char *boundary_indicator
= "; boundary=";
1655 char *typename
, *subtypename
, *name
;
1658 struct multipart
*m
;
1659 const struct str2init
*ctinit
;
1663 /* Set up the multipart/alternative part. These fields of *ct were
1664 initialized to 0 by mh_xcalloc():
1665 c_fp, c_unlink, c_begin, c_end,
1666 c_vrsn, c_ctline, c_celine,
1667 c_id, c_descr, c_dispo, c_partno,
1668 c_ctinfo.ci_comment, c_ctinfo.ci_magic,
1669 c_cefile, c_encoding,
1670 c_digested, c_digest[16], c_ctexbody,
1671 c_ctinitfnx, c_ceopenfnx, c_ceclosefnx, c_cesizefnx,
1673 c_showproc, c_termproc, c_storeproc, c_storage, c_folder
1676 ct
->c_file
= add (first_alt
->c_file
, NULL
);
1678 ct
->c_subtype
= subtype
;
1680 ctinit
= get_ct_init (ct
->c_type
);
1682 typename
= ct_type_str (type
);
1683 subtypename
= ct_subtype_str (type
, subtype
);
1687 int found_boundary
= 1;
1689 while (found_boundary
&& serial
< 1000000) {
1692 /* Ensure that the boundary doesn't appear in the decoded
1694 if (new_part
->c_cefile
.ce_file
) {
1695 if ((found_boundary
=
1696 boundary_in_content (&new_part
->c_cefile
.ce_fp
,
1697 new_part
->c_cefile
.ce_file
,
1704 /* Ensure that the boundary doesn't appear in the encoded
1706 if (! found_boundary
&& new_part
->c_file
) {
1707 if ((found_boundary
= boundary_in_content (&new_part
->c_fp
,
1715 if (found_boundary
) {
1716 /* Try a slightly different boundary. */
1721 snprintf (buffer2
, sizeof buffer2
, "%d", serial
);
1723 concat (boundary_prefix
,
1724 first_alt
->c_partno
? first_alt
->c_partno
: "",
1725 "-", buffer2
, NULL
);
1729 if (found_boundary
) {
1730 advise (NULL
, "giving up trying to find a unique boundary");
1736 name
= concat (" ", typename
, "/", subtypename
, boundary_indicator
, "\"",
1737 boundary
, "\"", NULL
);
1739 /* Load c_first_hf and c_last_hf. */
1740 transfer_noncontent_headers (first_alt
, ct
);
1741 add_header (ct
, add (TYPE_FIELD
, NULL
), concat (name
, "\n", NULL
));
1744 /* Load c_partno. */
1745 if (first_alt
->c_partno
) {
1746 ct
->c_partno
= add (first_alt
->c_partno
, NULL
);
1747 free (first_alt
->c_partno
);
1748 first_alt
->c_partno
= concat (ct
->c_partno
, ".1", NULL
);
1749 new_part
->c_partno
= concat (ct
->c_partno
, ".2", NULL
);
1751 first_alt
->c_partno
= add ("1", NULL
);
1752 new_part
->c_partno
= add ("2", NULL
);
1756 ct
->c_ctinfo
.ci_type
= add (typename
, NULL
);
1757 ct
->c_ctinfo
.ci_subtype
= add (subtypename
, NULL
);
1760 add_param(&ct
->c_ctinfo
.ci_first_pm
, &ct
->c_ctinfo
.ci_last_pm
,
1761 "boundary", boundary
, 0);
1765 p
->mp_next
->mp_next
= NULL
;
1766 p
->mp_next
->mp_part
= first_alt
;
1769 m
->mp_start
= concat (boundary
, "\n", NULL
);
1770 m
->mp_stop
= concat (boundary
, "--\n", NULL
);
1781 * Check that the boundary does not appear in the content.
1784 boundary_in_content (FILE **fp
, char *file
, const char *boundary
) {
1785 char buffer
[BUFSIZ
];
1787 int found_boundary
= 0;
1789 /* free_content() will close *fp if we fopen it here. */
1790 if (! *fp
&& (*fp
= fopen (file
, "r")) == NULL
) {
1791 advise (file
, "unable to open %s for reading", file
);
1795 fseeko (*fp
, 0L, SEEK_SET
);
1796 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, *fp
)) > 0) {
1797 if (find_str (buffer
, bytes_read
, boundary
)) {
1803 return found_boundary
;
1808 * Remove all non-Content headers.
1811 transfer_noncontent_headers (CT old
, CT
new) {
1814 hp_prev
= hp
= old
->c_first_hf
;
1818 if (strncasecmp (XXX_FIELD_PRF
, hp
->name
, strlen (XXX_FIELD_PRF
))) {
1819 if (hp
== old
->c_last_hf
) {
1820 if (hp
== old
->c_first_hf
) {
1821 old
->c_last_hf
= old
->c_first_hf
= NULL
;
1823 hp_prev
->next
= NULL
;
1824 old
->c_last_hf
= hp_prev
;
1827 if (hp
== old
->c_first_hf
) {
1828 old
->c_first_hf
= next
;
1830 hp_prev
->next
= next
;
1834 /* Put node hp in the new CT. */
1835 if (new->c_first_hf
== NULL
) {
1836 new->c_first_hf
= hp
;
1838 new->c_last_hf
->next
= hp
;
1840 new->c_last_hf
= hp
;
1842 /* A Content- header, leave in old. */
1855 set_ct_type (CT ct
, int type
, int subtype
, int encoding
) {
1856 char *typename
= ct_type_str (type
);
1857 char *subtypename
= ct_subtype_str (type
, subtype
);
1858 /* E.g, " text/plain" */
1859 char *type_subtypename
= concat (" ", typename
, "/", subtypename
, NULL
);
1860 /* E.g, " text/plain\n" */
1861 char *name_plus_nl
= concat (type_subtypename
, "\n", NULL
);
1862 int found_content_type
= 0;
1864 const char *cp
= NULL
;
1868 /* Update/add Content-Type header field. */
1869 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
1870 if (! strcasecmp (TYPE_FIELD
, hf
->name
)) {
1871 found_content_type
= 1;
1873 hf
->value
= (cp
= strchr (ct
->c_ctline
, ';'))
1874 ? concat (type_subtypename
, cp
, "\n", NULL
)
1875 : add (name_plus_nl
, NULL
);
1878 if (! found_content_type
) {
1879 add_header (ct
, add (TYPE_FIELD
, NULL
),
1880 (cp
= strchr (ct
->c_ctline
, ';'))
1881 ? concat (type_subtypename
, cp
, "\n", NULL
)
1882 : add (name_plus_nl
, NULL
));
1885 /* Some of these might not be used, but set them anyway. */
1887 ? concat (type_subtypename
, cp
, NULL
)
1888 : concat (type_subtypename
, NULL
);
1889 free (ct
->c_ctline
);
1890 ct
->c_ctline
= ctline
;
1891 /* Leave other ctinfo members as they were. */
1892 free (ct
->c_ctinfo
.ci_type
);
1893 ct
->c_ctinfo
.ci_type
= add (typename
, NULL
);
1894 free (ct
->c_ctinfo
.ci_subtype
);
1895 ct
->c_ctinfo
.ci_subtype
= add (subtypename
, NULL
);
1897 ct
->c_subtype
= subtype
;
1899 free (name_plus_nl
);
1900 free (type_subtypename
);
1902 status
= set_ce (ct
, encoding
);
1909 * It's not necessary to update the charset parameter of a Content-Type
1910 * header for a text part. According to RFC 2045 Sec. 6.4, the body
1911 * (content) was originally in the specified charset, "and will be in
1912 * that character set again after decoding."
1915 decode_text_parts (CT ct
, int encoding
, const char *decodetypes
,
1916 int *message_mods
) {
1918 int lf_line_endings
= 0;
1920 switch (ct
->c_type
) {
1921 case CT_MULTIPART
: {
1922 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
1925 /* Should check to see if the body for this part is encoded?
1926 For now, it gets passed along as-is by InitMultiPart(). */
1927 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
1928 status
= decode_text_parts (part
->mp_part
, encoding
, decodetypes
,
1935 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
1936 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
1938 status
= decode_text_parts (e
->eb_content
, encoding
, decodetypes
,
1944 if (! should_decode(decodetypes
, ct
->c_ctinfo
.ci_type
, ct
->c_ctinfo
.ci_subtype
)) {
1949 ct
->c_ctparams
&& ((struct text
*) ct
->c_ctparams
)->lf_line_endings
;
1951 switch (ct
->c_encoding
) {
1956 if (decode_part (ct
) == OK
&& ct
->c_cefile
.ce_file
) {
1957 const char *reason
= NULL
;
1959 if ((ct_encoding
= content_encoding (ct
, &reason
)) == CE_BINARY
1960 && encoding
!= CE_BINARY
) {
1961 /* The decoding isn't acceptable so discard it.
1962 Leave status as OK to allow other transformations. */
1964 report (NULL
, ct
->c_partno
, ct
->c_file
,
1965 "will not decode%s because it is binary (%s)",
1967 : ct
->c_ctline
? ct
->c_ctline
1971 (void) m_unlink (ct
->c_cefile
.ce_file
);
1972 free (ct
->c_cefile
.ce_file
);
1973 ct
->c_cefile
.ce_file
= NULL
;
1974 } else if (ct
->c_encoding
== CE_QUOTED
&&
1975 ct_encoding
== CE_8BIT
&& encoding
== CE_7BIT
) {
1976 /* The decoding isn't acceptable so discard it.
1977 Leave status as OK to allow other transformations. */
1979 report (NULL
, ct
->c_partno
, ct
->c_file
,
1980 "will not decode%s because it is 8bit",
1982 : ct
->c_ctline
? ct
->c_ctline
1985 (void) m_unlink (ct
->c_cefile
.ce_file
);
1986 free (ct
->c_cefile
.ce_file
);
1987 ct
->c_cefile
.ce_file
= NULL
;
1991 if (ct_encoding
== CE_BINARY
) {
1993 } else if (ct_encoding
== CE_8BIT
&& encoding
== CE_7BIT
) {
1998 if (set_ce (ct
, enc
) == OK
) {
2001 report (NULL
, ct
->c_partno
, ct
->c_file
, "decode%s",
2002 ct
->c_ctline
? ct
->c_ctline
: "");
2004 if (lf_line_endings
) {
2005 strip_crs (ct
, message_mods
);
2018 if (lf_line_endings
) {
2019 strip_crs (ct
, message_mods
);
2034 * Determine if the part with type[/subtype] should be decoded, according to
2035 * decodetypes (which came from the -decodetypes switch).
2038 should_decode(const char *decodetypes
, const char *type
, const char *subtype
) {
2039 /* Quick search for matching type[/subtype] in decodetypes: bracket
2040 decodetypes with commas, then search for ,type, and ,type/subtype, in
2043 int found_match
= 0;
2044 char *delimited_decodetypes
= concat(",", decodetypes
, ",", NULL
);
2045 char *delimited_type
= concat(",", type
, ",", NULL
);
2047 if (nmh_strcasestr(delimited_decodetypes
, delimited_type
)) {
2049 } else if (subtype
!= NULL
) {
2050 char *delimited_type_subtype
=
2051 concat(",", type
, "/", subtype
, ",", NULL
);
2053 if (nmh_strcasestr(delimited_decodetypes
, delimited_type_subtype
)) {
2056 free(delimited_type_subtype
);
2059 free(delimited_type
);
2060 free(delimited_decodetypes
);
2067 * See if the decoded content is 7bit, 8bit, or binary. It's binary
2068 * if it has any NUL characters, a CR not followed by a LF, or lines
2069 * greater than 998 characters in length. If binary, reason is set
2070 * to a string explaining why.
2073 content_encoding (CT ct
, const char **reason
) {
2074 CE ce
= &ct
->c_cefile
;
2075 int encoding
= CE_7BIT
;
2078 size_t line_len
= 0;
2079 char buffer
[BUFSIZ
];
2082 if (! ce
->ce_fp
&& (ce
->ce_fp
= fopen (ce
->ce_file
, "r")) == NULL
) {
2083 advise (ce
->ce_file
, "unable to open for reading");
2087 fseeko (ce
->ce_fp
, 0L, SEEK_SET
);
2088 while (encoding
!= CE_BINARY
&&
2089 (inbytes
= fread (buffer
, 1, sizeof buffer
, ce
->ce_fp
)) > 0) {
2092 int last_char_was_cr
= 0;
2094 for (i
= 0, cp
= buffer
; i
< inbytes
; ++i
, ++cp
) {
2095 if (*cp
== '\0' || ++line_len
> 998 ||
2096 (*cp
!= '\n' && last_char_was_cr
)) {
2097 encoding
= CE_BINARY
;
2099 *reason
= "null character";
2100 } else if (line_len
> 998) {
2101 *reason
= "line length > 998";
2102 } else if (*cp
!= '\n' && last_char_was_cr
) {
2103 *reason
= "CR not followed by LF";
2105 /* Should not reach this. */
2109 } else if (*cp
== '\n') {
2111 } else if (! isascii ((unsigned char) *cp
)) {
2115 last_char_was_cr
= *cp
== '\r' ? 1 : 0;
2121 } /* else should never happen */
2128 * Strip carriage returns from content.
2131 strip_crs (CT ct
, int *message_mods
) {
2132 char *charset
= content_charset (ct
);
2135 /* Only strip carriage returns if content is ASCII or another
2136 charset that has the same readily recognizable CR followed by a
2137 LF. We can include UTF-8 here because if the high-order bit of
2138 a UTF-8 byte is 0, then it must be a single-byte ASCII
2140 if (! strcasecmp (charset
, "US-ASCII") ||
2141 ! strcasecmp (charset
, "UTF-8") ||
2142 ! strncasecmp (charset
, "ISO-8859-", 9) ||
2143 ! strncasecmp (charset
, "WINDOWS-12", 10)) {
2149 int opened_input_file
= 0;
2151 if (ct
->c_cefile
.ce_file
) {
2152 file
= &ct
->c_cefile
.ce_file
;
2153 fp
= &ct
->c_cefile
.ce_fp
;
2155 } else if (ct
->c_file
) {
2158 begin
= (size_t) ct
->c_begin
;
2159 end
= (size_t) ct
->c_end
;
2160 } /* else don't know where the content is */
2162 if (file
&& *file
&& fp
) {
2164 if ((*fp
= fopen (*file
, "r")) == NULL
) {
2165 advise (*file
, "unable to open for reading");
2168 opened_input_file
= 1;
2174 char buffer
[BUFSIZ
];
2176 size_t bytes_to_read
=
2177 end
> 0 && end
> begin
? end
- begin
: sizeof buffer
;
2179 fseeko (*fp
, begin
, SEEK_SET
);
2180 while ((bytes_read
= fread (buffer
, 1,
2181 min (bytes_to_read
, sizeof buffer
),
2183 /* Look for CR followed by a LF. This is supposed to
2184 be text so there should be LF's. If not, don't
2185 modify the content. */
2188 int last_char_was_cr
= 0;
2190 if (end
> 0) { bytes_to_read
-= bytes_read
; }
2192 for (i
= 0, cp
= buffer
; i
< bytes_read
; ++i
, ++cp
) {
2193 if (*cp
== '\n' && last_char_was_cr
) {
2198 last_char_was_cr
= *cp
== '\r' ? 1 : 0;
2204 char *stripped_content_file
;
2205 char *tempfile
= m_mktemp2 (NULL
, invo_name
, &fd
, NULL
);
2207 if (tempfile
== NULL
) {
2208 adios (NULL
, "unable to create temporary file in %s",
2211 stripped_content_file
= add (tempfile
, NULL
);
2213 /* Strip each CR before a LF from the content. */
2214 fseeko (*fp
, begin
, SEEK_SET
);
2215 while ((bytes_read
= fread (buffer
, 1, sizeof buffer
, *fp
)) >
2219 int last_char_was_cr
= 0;
2221 for (i
= 0, cp
= buffer
; i
< bytes_read
; ++i
, ++cp
) {
2223 last_char_was_cr
= 1;
2224 } else if (last_char_was_cr
) {
2226 if (write (fd
, "\r", 1) < 0) {
2227 advise (tempfile
, "CR write");
2230 if (write (fd
, cp
, 1) < 0) {
2231 advise (tempfile
, "write");
2233 last_char_was_cr
= 0;
2235 if (write (fd
, cp
, 1) < 0) {
2236 advise (tempfile
, "write");
2238 last_char_was_cr
= 0;
2244 admonish (NULL
, "unable to write temporary file %s",
2245 stripped_content_file
);
2246 (void) m_unlink (stripped_content_file
);
2249 /* Replace the decoded file with the converted one. */
2250 if (ct
->c_cefile
.ce_file
) {
2251 if (ct
->c_cefile
.ce_unlink
) {
2252 (void) m_unlink (ct
->c_cefile
.ce_file
);
2254 free (ct
->c_cefile
.ce_file
);
2256 ct
->c_cefile
.ce_file
= stripped_content_file
;
2257 ct
->c_cefile
.ce_unlink
= 1;
2261 report (NULL
, ct
->c_partno
,
2262 begin
== 0 && end
== 0 ? "" : *file
,
2268 if (opened_input_file
) {
2282 * Add/update, if necessary, the message C-T-E, based on the least restrictive
2283 * of the part C-T-E's.
2286 update_cte (CT ct
) {
2287 const int least_restrictive_enc
= least_restrictive_encoding (ct
);
2289 if (least_restrictive_enc
!= CE_UNKNOWN
&&
2290 least_restrictive_enc
!= CE_7BIT
) {
2291 char *cte
= concat (" ", ce_str (least_restrictive_enc
), "\n", NULL
);
2295 /* Update/add Content-Transfer-Encoding header field. */
2296 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
2297 if (! strcasecmp (ENCODING_FIELD
, hf
->name
)) {
2304 add_header (ct
, add (ENCODING_FIELD
, NULL
), cte
);
2311 * Find the least restrictive encoding (7bit, 8bit, binary) of the parts
2315 least_restrictive_encoding (CT ct
) {
2316 int encoding
= CE_UNKNOWN
;
2318 switch (ct
->c_type
) {
2319 case CT_MULTIPART
: {
2320 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2323 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
2324 const int part_encoding
=
2325 least_restrictive_encoding (part
->mp_part
);
2327 if (less_restrictive (encoding
, part_encoding
)) {
2328 encoding
= part_encoding
;
2335 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2336 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2337 const int part_encoding
=
2338 least_restrictive_encoding (e
->eb_content
);
2340 if (less_restrictive (encoding
, part_encoding
)) {
2341 encoding
= part_encoding
;
2347 if (less_restrictive (encoding
, ct
->c_encoding
)) {
2348 encoding
= ct
->c_encoding
;
2357 * Return whether the second encoding is less restrictive than the first, where
2358 * "less restrictive" is in the sense used by RFC 2045 Secs. 6.1 and 6.4. So,
2359 * CE_BINARY is less restrictive than CE_8BIT and
2360 * CE_8BIT is less restrictive than CE_7BIT.
2363 less_restrictive (int encoding
, int second_encoding
) {
2364 switch (second_encoding
) {
2366 return encoding
!= CE_BINARY
;
2368 return encoding
!= CE_BINARY
&& encoding
!= CE_8BIT
;
2370 return encoding
!= CE_BINARY
&& encoding
!= CE_8BIT
&&
2371 encoding
!= CE_7BIT
;
2379 * Convert character set of each part.
2382 convert_charsets (CT ct
, char *dest_charset
, int *message_mods
) {
2385 switch (ct
->c_type
) {
2387 if (ct
->c_subtype
== TEXT_PLAIN
) {
2388 status
= convert_charset (ct
, dest_charset
, message_mods
);
2391 char *ct_charset
= content_charset (ct
);
2393 report (NULL
, ct
->c_partno
, ct
->c_file
,
2394 "convert %s to %s", ct_charset
, dest_charset
);
2398 char *ct_charset
= content_charset (ct
);
2400 report ("iconv", ct
->c_partno
, ct
->c_file
,
2401 "failed to convert %s to %s", ct_charset
, dest_charset
);
2407 case CT_MULTIPART
: {
2408 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2411 /* Should check to see if the body for this part is encoded?
2412 For now, it gets passed along as-is by InitMultiPart(). */
2413 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
2415 convert_charsets (part
->mp_part
, dest_charset
, message_mods
);
2421 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2422 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2425 convert_charsets (e
->eb_content
, dest_charset
, message_mods
);
2438 * Fix various problems that aren't handled elsewhere. These
2439 * are fixed unconditionally: there are no switches to disable
2440 * them. Currently, "problems" are these:
2441 * 1) remove extraneous semicolon at the end of a header parameter list
2442 * 2) replace RFC 2047 encoding with RFC 2231 encoding of name and
2443 * filename parameters in Content-Type and Content-Disposition
2444 * headers, respectively.
2447 fix_always (CT ct
, int *message_mods
) {
2450 switch (ct
->c_type
) {
2451 case CT_MULTIPART
: {
2452 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2455 for (part
= m
->mp_parts
; status
== OK
&& part
; part
= part
->mp_next
) {
2456 status
= fix_always (part
->mp_part
, message_mods
);
2462 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2463 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2465 status
= fix_always (e
->eb_content
, message_mods
);
2472 if (ct
->c_first_hf
) {
2473 fix_filename_encoding (ct
);
2476 for (hf
= ct
->c_first_hf
; hf
; hf
= hf
->next
) {
2477 size_t len
= strlen (hf
->value
);
2479 if (strcasecmp (hf
->name
, TYPE_FIELD
) != 0 &&
2480 strcasecmp (hf
->name
, DISPO_FIELD
) != 0) {
2481 /* Only do this for Content-Type and
2482 Content-Disposition fields because those are the
2483 only headers that parse_mime() warns about. */
2487 /* whitespace following a trailing ';' will be nuked as well */
2488 if (hf
->value
[len
- 1] == '\n') {
2489 while (isspace((unsigned char)(hf
->value
[len
- 2]))) {
2490 if (len
-- == 0) { break; }
2494 if (hf
->value
[len
- 2] == ';') {
2495 /* Remove trailing ';' from parameter value. */
2496 hf
->value
[len
- 2] = '\n';
2497 hf
->value
[len
- 1] = '\0';
2499 /* Also, if Content-Type parameter, remove trailing ';'
2500 from ct->c_ctline. This probably isn't necessary
2502 if (strcasecmp(hf
->name
, TYPE_FIELD
) == 0 && ct
->c_ctline
) {
2503 size_t l
= strlen(ct
->c_ctline
) - 1;
2504 while (isspace((unsigned char)(ct
->c_ctline
[l
])) ||
2505 ct
->c_ctline
[l
] == ';') {
2506 ct
->c_ctline
[l
--] = '\0';
2507 if (l
== 0) { break; }
2513 report (NULL
, ct
->c_partno
, ct
->c_file
,
2514 "remove trailing ; from %s parameter value",
2526 * Factor out common code for loops in fix_filename_encoding().
2529 fix_filename_param (char *name
, char *value
, PM
*first_pm
, PM
*last_pm
) {
2533 if (((value_len
= strlen (value
)) > 0) &&
2534 strncmp (value
, "=?", 2) == 0 &&
2535 strncmp (&value
[value_len
- 2], "?=", 2) == 0) {
2536 /* Looks like an RFC 2047 encoded parameter. */
2537 char decoded
[PATH_MAX
+ 1];
2539 if (decode_rfc2047 (value
, decoded
, sizeof decoded
)) {
2540 /* Encode using RFC 2231. */
2541 replace_param (first_pm
, last_pm
, name
, decoded
, 0);
2544 advise (NULL
, "failed to decode %s parameter %s", name
, value
);
2553 * Replace RFC 2047 encoding with RFC 2231 encoding of name and
2554 * filename parameters in Content-Type and Content-Disposition
2555 * headers, respectively.
2558 fix_filename_encoding (CT ct
) {
2563 for (pm
= ct
->c_ctinfo
.ci_first_pm
; pm
; pm
= pm
->pm_next
) {
2564 if (pm
->pm_name
&& pm
->pm_value
&&
2565 strcasecmp (pm
->pm_name
, "name") == 0) {
2566 fixed
= fix_filename_param (pm
->pm_name
, pm
->pm_value
,
2567 &ct
->c_ctinfo
.ci_first_pm
,
2568 &ct
->c_ctinfo
.ci_last_pm
);
2572 for (pm
= ct
->c_dispo_first
; pm
; pm
= pm
->pm_next
) {
2573 if (pm
->pm_name
&& pm
->pm_value
&&
2574 strcasecmp (pm
->pm_name
, "filename") == 0) {
2575 fixed
= fix_filename_param (pm
->pm_name
, pm
->pm_value
,
2581 /* Fix hf values to correspond. */
2582 for (hf
= ct
->c_first_hf
; fixed
&& hf
; hf
= hf
->next
) {
2583 enum { OTHER
, TYPE_HEADER
, DISPO_HEADER
} field
= OTHER
;
2585 if (strcasecmp (hf
->name
, TYPE_FIELD
) == 0) {
2586 field
= TYPE_HEADER
;
2587 } else if (strcasecmp (hf
->name
, DISPO_FIELD
) == 0) {
2588 field
= DISPO_HEADER
;
2591 if (field
!= OTHER
) {
2592 const char *const semicolon_loc
= strchr (hf
->value
, ';');
2594 if (semicolon_loc
) {
2596 strlen (hf
->name
) + 1 + semicolon_loc
- hf
->value
;
2597 const char *const params
=
2599 field
== TYPE_HEADER
2600 ? ct
->c_ctinfo
.ci_first_pm
2601 : ct
->c_dispo_first
,
2603 const char *const new_params
= concat (params
, "\n", NULL
);
2605 replace_substring (&hf
->value
, semicolon_loc
, new_params
);
2606 free ((char *) new_params
);
2607 free ((char *) params
);
2609 advise (NULL
, "did not find semicolon in %s:%s\n",
2610 hf
->name
, hf
->value
);
2620 * Output content in input file to output file.
2623 write_content (CT ct
, const char *input_filename
, char *outfile
, int modify_inplace
,
2627 if (modify_inplace
) {
2628 if (message_mods
> 0) {
2629 if ((status
= output_message (ct
, outfile
)) == OK
) {
2630 char *infile
= input_filename
2631 ? add (input_filename
, NULL
)
2632 : add (ct
->c_file
? ct
->c_file
: "-", NULL
);
2634 if (remove_file (infile
) == OK
) {
2635 if (rename (outfile
, infile
)) {
2636 /* Rename didn't work, possibly because of an
2637 attempt to rename across filesystems. Try
2638 brute force copy. */
2639 int old
= open (outfile
, O_RDONLY
);
2641 open (infile
, O_WRONLY
| O_CREAT
, m_gmprot ());
2644 if (old
!= -1 && new != -1) {
2645 char buffer
[BUFSIZ
];
2647 while ((i
= read (old
, buffer
, sizeof buffer
)) >
2649 if (write (new, buffer
, i
) != i
) {
2655 if (new != -1) { close (new); }
2656 if (old
!= -1) { close (old
); }
2657 (void) m_unlink (outfile
);
2660 /* The -file argument processing used path() to
2661 expand filename to absolute path. */
2662 int file
= ct
->c_file
&& ct
->c_file
[0] == '/';
2664 admonish (NULL
, "unable to rename %s %s to %s",
2665 file
? "file" : "message", outfile
,
2671 admonish (NULL
, "unable to remove input file %s, "
2672 "not modifying it", infile
);
2673 (void) m_unlink (outfile
);
2682 /* No modifications and didn't need the tmp outfile. */
2683 (void) m_unlink (outfile
);
2686 /* Output is going to some file. Produce it whether or not
2687 there were modifications. */
2688 status
= output_message (ct
, outfile
);
2697 * parse_mime() does not set lf_line_endings in struct text, so use this
2698 * function to do it. It touches the parts the decodetypes identifies.
2701 set_text_ctparams(CT ct
, char *decodetypes
, int lf_line_endings
) {
2702 switch (ct
->c_type
) {
2703 case CT_MULTIPART
: {
2704 struct multipart
*m
= (struct multipart
*) ct
->c_ctparams
;
2707 for (part
= m
->mp_parts
; part
; part
= part
->mp_next
) {
2708 set_text_ctparams(part
->mp_part
, decodetypes
, lf_line_endings
);
2714 if (ct
->c_subtype
== MESSAGE_EXTERNAL
) {
2715 struct exbody
*e
= (struct exbody
*) ct
->c_ctparams
;
2717 set_text_ctparams(e
->eb_content
, decodetypes
, lf_line_endings
);
2722 if (should_decode(decodetypes
, ct
->c_ctinfo
.ci_type
, ct
->c_ctinfo
.ci_subtype
)) {
2723 if (ct
->c_ctparams
== NULL
) {
2724 ct
->c_ctparams
= mh_xcalloc(1, sizeof (struct text
));
2726 ((struct text
*) ct
->c_ctparams
)->lf_line_endings
= lf_line_endings
;
2733 * If "rmmproc" is defined, call that to remove the file. Otherwise,
2734 * use the standard MH backup file.
2737 remove_file (const char *file
) {
2739 char *rmm_command
= concat (rmmproc
, " ", file
, NULL
);
2740 int status
= system (rmm_command
);
2743 return WIFEXITED (status
) ? WEXITSTATUS (status
) : NOTOK
;
2745 /* This is OK for a non-message file, it still uses the
2746 BACKUP_PREFIX form. The backup file will be in the same
2747 directory as file. */
2748 return rename (file
, m_backup (file
));
2754 * Output formatted message to user.
2757 report (char *what
, char *partno
, char *filename
, char *message
, ...) {
2762 va_start (args
, message
);
2763 fmt
= concat (filename
, partno
? " part " : ", ",
2764 partno
? partno
: "", partno
? ", " : "", message
, NULL
);
2766 advertise (what
, NULL
, fmt
, args
);
2779 fprintf (stderr
, "\n");