/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* GMime * Copyright (C) 2000-2007 Jeffrey Stedfast * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include int main (int argc, char **argv) { GMimeStream *istream, *ostream, *fstream; GMimeFilter *html; int i; g_mime_init (0); fstream = g_mime_stream_file_new (stdout); ostream = g_mime_stream_filter_new_with_stream (fstream); g_mime_stream_unref (fstream); /*html = g_mime_filter_html_new (GMIME_FILTER_HTML_CONVERT_NL | GMIME_FILTER_HTML_CONVERT_SPACES | GMIME_FILTER_HTML_CONVERT_URLS | GMIME_FILTER_HTML_MARK_CITATION | GMIME_FILTER_HTML_CONVERT_ADDRESSES | GMIME_FILTER_HTML_ESCAPE_8BIT | GMIME_FILTER_HTML_CITE, 0);*/ html = g_mime_filter_from_new (GMIME_FILTER_FROM_MODE_ESCAPE); g_mime_stream_filter_add (GMIME_STREAM_FILTER (ostream), html); g_object_unref (html); for (i = 1; i < argc; i++) { FILE *fp; if (!(fp = fopen (argv[i], "r"))) { fprintf (stderr, "failed to open %s\n", argv[i]); continue; } istream = g_mime_stream_file_new (fp); g_mime_stream_write_to_stream (istream, ostream); g_mime_stream_unref (istream); } g_mime_stream_unref (ostream); return 0; }