]>
diplodocus.org Git - nmh/blob - uip/mhmisc.c
1 /* mhmisc.c -- misc routines to process MIME messages
3 * This code is Copyright (c) 2002, by the authors of nmh. See the
4 * COPYRIGHT file in the root directory of the nmh distribution for
5 * complete copyright information.
10 #include <h/mhparse.h>
12 #include "sbr/makedir.h"
18 * limit actions to specified parts or content types
22 char *parts
[NPARTS
+ 1];
23 char *types
[NTYPES
+ 1];
27 static char *errs
= NULL
;
36 /* a part is "ok", i.e., should be processed, if:
37 - there were no -part arguments
38 - this part is a multipart
40 if (npart
== 0 || ct
->c_type
== CT_MULTIPART
) {
45 - this part is a an exact match for any -part option
46 - this part is a sub-part of any -part option
48 for (ap
= parts
; *ap
; ap
++) {
50 if (!strncmp (*ap
, ct
->c_partno
, len
) &&
51 (!ct
->c_partno
[len
] || ct
->c_partno
[len
] == '.' )) {
67 for (ap
= parts
; *ap
; ap
++) {
68 if (!strcmp (*ap
, ct
->c_partno
)) {
78 type_ok (CT ct
, int sP
)
82 CI ci
= &ct
->c_ctinfo
;
84 if (ntype
== 0 || (ct
->c_type
== CT_MULTIPART
&& (sP
|| ct
->c_subtype
)))
87 snprintf (buffer
, sizeof(buffer
), "%s/%s", ci
->ci_type
, ci
->ci_subtype
);
88 for (ap
= types
; *ap
; ap
++)
89 if (!strcasecmp (*ap
, ci
->ci_type
) || !strcasecmp (*ap
, buffer
))
97 * Returns true if the content has a disposition of "inline".
99 * Technically we should check parent content to see if they have
100 * disposition to use as a default, but we don't right now. Maybe
108 * If there isn't any disposition at all, it's "inline". Obviously
109 * if it's "inline", then it's inline. RFC 2183 says if it's an unknown
110 * disposition, treat it as 'attachment'.
113 if (! ct
->c_dispo_type
|| strcasecmp(ct
->c_dispo_type
, "inline") == 0)
119 make_intermediates (char *file
)
123 for (cp
= file
+ 1; (cp
= strchr(cp
, '/')); cp
++) {
127 if (stat (file
, &st
) == NOTOK
) {
130 if (errno
!= ENOENT
) {
131 advise (file
, "error on directory");
137 ep
= concat ("Create directory \"", file
, "\"? ", NULL
);
138 answer
= read_yes_or_no_if_tty (ep
);
142 goto losing_directory
;
143 if (!makedir (file
)) {
144 inform("unable to create directory %s", file
);
145 goto losing_directory
;
157 * Construct error message for content
161 content_error (char *what
, CT ct
, char *fmt
, ...)
165 char *bp
, buffer
[BUFSIZ
];
169 buflen
= sizeof(buffer
);
171 if (userrs
&& invo_name
&& *invo_name
) {
172 snprintf (bp
, buflen
, "%s: ", invo_name
);
178 va_start (arglist
, fmt
);
180 vsnprintf (bp
, buflen
, fmt
, arglist
);
191 snprintf (bp
, buflen
, " %s: ", what
);
197 if ((s
= strerror (errno
)))
198 snprintf (bp
, buflen
, "%s", s
);
200 snprintf (bp
, buflen
, "Error %d", errno
);
207 /* Now add content type and subtype */
208 snprintf (bp
, buflen
, "\n (content %s/%s",
209 ci
->ci_type
, ci
->ci_subtype
);
214 /* Now add the message/part number */
216 snprintf (bp
, buflen
, " in message %s", ct
->c_file
);
222 snprintf (bp
, buflen
, ", part %s", ct
->c_partno
);
229 snprintf (bp
, buflen
, ")");
239 errs
= add (buffer
, errs
);
241 inform("%s", buffer
);