summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
f62ff13)
both, and this isn't work the extra hassle.
* inlineonly - If true, only display MIME parts that are marked with
* a disposition of "inline" (includes parts that lack a
* Content-Disposition header).
* inlineonly - If true, only display MIME parts that are marked with
* a disposition of "inline" (includes parts that lack a
* Content-Disposition header).
- * markerform - A file of mh-format(5) code used to display info about
- * MIME parts.
- * markerformat - mh-format(5) code used to display info about MIME parts.
+ * markerform - The name of a file containg mh-format(5) code used to
+ * display markers about non-displayed MIME parts.
*/
void show_all_messages(CT *cts, int concat, int textonly, int inlineonly,
*/
void show_all_messages(CT *cts, int concat, int textonly, int inlineonly,
- char *markerform, char *markerformat);
extern int checksw; /* Add Content-MD5 field */
extern int checksw; /* Add Content-MD5 field */
* Show the message content
*/
if (showsw)
* Show the message content
*/
if (showsw)
- show_all_messages (cts, 0, 0, 0, NULL, NULL);
+ show_all_messages (cts, 0, 0, 0, NULL);
/* Now free all the structures for the content */
for (ctp = cts; *ctp; ctp++)
/* Now free all the structures for the content */
for (ctp = cts; *ctp; ctp++)
/*
* Show the message content
*/
/*
* Show the message content
*/
- show_all_messages (cts, concatsw, textonly, inlineonly, NULL, NULL);
+ show_all_messages (cts, concatsw, textonly, inlineonly, NULL);
/* Now free all the structures for the content */
for (ctp = cts; *ctp; ctp++)
/* Now free all the structures for the content */
for (ctp = cts; *ctp; ctp++)
static int parse_display_string (CT, char *, int *, int *, char *, char *,
size_t, int multipart);
static int convert_content_charset (CT, char **);
static int parse_display_string (CT, char *, int *, int *, char *, char *,
size_t, int multipart);
static int convert_content_charset (CT, char **);
-static struct format *compile_marker(char *, char *);
+static struct format *compile_marker(char *);
static void output_marker (CT, struct format *);
static void free_markercomps (void);
static int pidcheck(int);
static void output_marker (CT, struct format *);
static void free_markercomps (void);
static int pidcheck(int);
void
show_all_messages (CT *cts, int concat, int textonly, int inlineonly,
void
show_all_messages (CT *cts, int concat, int textonly, int inlineonly,
- char *markerform, char *markerformat)
{
CT ct, *ctp;
struct format *fmt;
{
CT ct, *ctp;
struct format *fmt;
/*
* Compile the content marker format line
*/
/*
* Compile the content marker format line
*/
- fmt = compile_marker(markerform, markerformat);
+ fmt = compile_marker(markerform);
/*
* If form is "mhl.null", suppress display of header.
/*
* If form is "mhl.null", suppress display of header.
"%|%{ctype-name}%> ]"
static struct format *
"%|%{ctype-name}%> ]"
static struct format *
-compile_marker(char *markerform, char *markerformat)
+compile_marker(char *markerform)
{
struct format *fmt;
char *fmtstring;
{
struct format *fmt;
char *fmtstring;
unsigned int bucket;
struct param_comp_list *pc_entry;
unsigned int bucket;
struct param_comp_list *pc_entry;
- fmtstring = new_fs(markerform, markerformat, DEFAULT_MARKER);
+ fmtstring = new_fs(markerform, NULL, DEFAULT_MARKER);
(void) fmt_compile(fmtstring, &fmt, 1);
free(fmtstring);
(void) fmt_compile(fmtstring, &fmt, 1);
free(fmtstring);