/* * mhoutsbr.c -- routines to output MIME messages * -- given a Content structure * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. */ #include #include #include #include #include #include #include /* * prototypes */ int output_message (CT, char *); int output_message_fp (CT, FILE *, char *); /* * static prototypes */ static int output_content (CT, FILE *); static void output_headers (CT, FILE *); static int writeExternalBody (CT, FILE *); static int write8Bit (CT, FILE *); static int writeQuoted (CT, FILE *); static int writeBase64ct (CT, FILE *); /* * Main routine to output a MIME message contained * in a Content structure, to a file. Any necessary * transfer encoding is added. */ int output_message_fp (CT ct, FILE *fp, char *file) { if (output_content (ct, fp) == NOTOK) return NOTOK; if (fflush (fp)) { advise ((file?file:""), "error writing to"); return NOTOK; } return OK; } int output_message (CT ct, char *file) { FILE *fp; int status; if (! strcmp (file, "-")) { fp = stdout; } else if ((fp = fopen (file, "w")) == NULL) { advise (file, "unable to open for writing"); return NOTOK; } status = output_message_fp(ct, fp, file); if (strcmp (file, "-")) fclose(fp); return status; } /* * Output a Content structure to a file. */ static int output_content (CT ct, FILE *out) { int result = 0; CI ci = &ct->c_ctinfo; char *boundary = "", *cp; if ((cp = get_param(ci->ci_first_pm, "boundary", '-', 0))) boundary = cp; /* * Output all header fields for this content */ output_headers (ct, out); /* * If this is the internal content structure for a * "message/external", then we are done with the * headers (since it has no body). */ if (ct->c_ctexbody) { if (boundary && *boundary != '\0') free(boundary); return OK; } /* * Now output the content bodies. */ switch (ct->c_type) { case CT_MULTIPART: { struct multipart *m; struct part *part; if (ct->c_rfc934) putc ('\n', out); m = (struct multipart *) ct->c_ctparams; if (m->mp_content_before) { fprintf (out, "%s", m->mp_content_before); } for (part = m->mp_parts; part; part = part->mp_next) { CT p = part->mp_part; fprintf (out, "\n--%s\n", boundary); if (output_content (p, out) == NOTOK) { if (boundary && *boundary != '\0') free(boundary); return NOTOK; } } fprintf (out, "\n--%s--\n", boundary); if (m->mp_content_after) { fprintf (out, "%s", m->mp_content_after); } } break; case CT_MESSAGE: putc ('\n', out); if (ct->c_subtype == MESSAGE_EXTERNAL) { struct exbody *e; e = (struct exbody *) ct->c_ctparams; if (output_content (e->eb_content, out) == NOTOK) return NOTOK; /* output phantom body for access-type "mail-server" */ if (e->eb_body) writeExternalBody (ct, out); } else { result = write8Bit (ct, out); } break; /* * Handle discrete types (text/application/audio/image/video) */ default: switch (ct->c_encoding) { case CE_7BIT: /* Special case: if this is a non-MIME message with no body, don't emit the newline that would appear between the headers and body. In that case, the call to write8Bit() shouldn't be needed, but is harmless. */ if (ct->c_ctinfo.ci_first_pm != NULL || ct->c_begin != ct->c_end) { putc ('\n', out); } result = write8Bit (ct, out); break; case CE_8BIT: putc ('\n', out); result = write8Bit (ct, out); break; case CE_QUOTED: putc ('\n', out); result = writeQuoted (ct, out); break; case CE_BASE64: putc ('\n', out); result = writeBase64ct (ct, out); break; case CE_BINARY: advise (NULL, "can't handle binary transfer encoding in content"); result = NOTOK; break; default: advise (NULL, "unknown transfer encoding in content"); result = NOTOK; break; } break; } if (boundary && *boundary != '\0') free(boundary); return result; } /* * Output all the header fields for a content */ static void output_headers (CT ct, FILE *out) { HF hp; hp = ct->c_first_hf; while (hp) { fprintf (out, "%s:%s", hp->name, hp->value); hp = hp->next; } } /* * Write the phantom body for access-type "mail-server". */ static int writeExternalBody (CT ct, FILE *out) { char *cp, *dp; struct exbody *e = (struct exbody *) ct->c_ctparams; putc ('\n', out); for (cp = e->eb_body; *cp; cp++) { CT ct2 = e->eb_content; CI ci2 = &ct2->c_ctinfo; if (*cp == '\\') { switch (*++cp) { case 'I': if (ct2->c_id) { dp = trimcpy (ct2->c_id); fputs (dp, out); free (dp); } continue; case 'N': dp = get_param(ci2->ci_first_pm, "name", '_', 0); if (dp) { fputs (dp, out); free (dp); } continue; case 'T': fprintf (out, "%s/%s", ci2->ci_type, ci2->ci_subtype); dp = output_params(strlen(ci2->ci_type) + strlen(ci2->ci_subtype) + 1, ci2->ci_first_pm, NULL, 0); if (dp) { fputs (dp, out); free (dp); } continue; case 'n': putc ('\n', out); continue; case 't': putc ('\t', out); continue; case '\0': cp--; break; case '\\': case '"': break; default: putc ('\\', out); break; } } putc (*cp, out); } putc ('\n', out); return OK; } /* * Output a content without any transfer encoding */ static int write8Bit (CT ct, FILE *out) { int fd; size_t inbytes; char c, *file, buffer[BUFSIZ]; CE ce = &ct->c_cefile; file = NULL; if ((fd = (*ct->c_ceopenfnx) (ct, &file)) == NOTOK) return NOTOK; c = '\n'; while ((inbytes = fread (buffer, 1, sizeof buffer, ce->ce_fp)) > 0) { c = buffer[inbytes - 1]; if (fwrite (buffer, 1, inbytes, out) < inbytes) { advise ("write8Bit", "fwrite"); } } if (c != '\n') putc ('\n', out); (*ct->c_ceclosefnx) (ct); return OK; } /* * Output a content using quoted-printable */ static int writeQuoted (CT ct, FILE *out) { int fd; char *cp, *file; char c = '\0'; CE ce = &ct->c_cefile; int n = 0; char *bufp = NULL; size_t buflen; ssize_t gotlen; file = NULL; if ((fd = (*ct->c_ceopenfnx) (ct, &file)) == NOTOK) return NOTOK; while ((gotlen = getline(&bufp, &buflen, ce->ce_fp)) != -1) { cp = bufp + gotlen - 1; if ((c = *cp) == '\n') gotlen--; /* * if the line starts with "From ", encode the 'F' so it * doesn't falsely match an mbox delimiter. */ cp = bufp; if (gotlen >= 5 && strncmp (cp, "From ", 5) == 0) { fprintf (out, "=%02X", 'F'); cp++; n += 3; } for (; cp < bufp + gotlen; cp++) { if (n > CPERLIN - 3) { fputs ("=\n", out); n = 0; } switch (*cp) { case ' ': case '\t': putc (*cp, out); n++; break; default: if (*cp < '!' || *cp > '~') goto three_print; putc (*cp, out); n++; break; case '=': three_print: fprintf (out, "=%02X", *cp & 0xff); n += 3; break; } } if (c == '\n') { if (cp > bufp && (*--cp == ' ' || *cp == '\t')) fputs ("=\n", out); putc ('\n', out); n = 0; } } if (c != '\n') putc ('\n', out); (*ct->c_ceclosefnx) (ct); free (bufp); return OK; } /* * Output a content using base64 */ static int writeBase64ct (CT ct, FILE *out) { int fd, result; char *file; CE ce = &ct->c_cefile; file = NULL; if ((fd = (*ct->c_ceopenfnx) (ct, &file)) == NOTOK) return NOTOK; result = writeBase64aux (ce->ce_fp, out, ct->c_type == CT_TEXT && ct->c_ctparams ? ((struct text *) ct->c_ctparams)->lf_line_endings == 0 : 0); (*ct->c_ceclosefnx) (ct); return result; }