Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 17442 invoked from network); 1 Nov 2010 20:59:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 1 Nov 2010 20:59:08 -0000 Received: (qmail 10417 invoked by uid 500); 1 Nov 2010 20:59:39 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 10308 invoked by uid 500); 1 Nov 2010 20:59:39 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 10301 invoked by uid 99); 1 Nov 2010 20:59:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Nov 2010 20:59:39 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 01 Nov 2010 20:59:39 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9BF85238897A; Mon, 1 Nov 2010 20:58:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1029834 - /httpd/mod_mbox/trunk/module-2.0/mod_mbox_out.c Date: Mon, 01 Nov 2010 20:58:25 -0000 To: cvs@httpd.apache.org From: jerenkrantz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101101205825.9BF85238897A@eris.apache.org> Author: jerenkrantz Date: Mon Nov 1 20:58:25 2010 New Revision: 1029834 URL: http://svn.apache.org/viewvc?rev=1029834&view=rev Log: * module-2.0/mod_mbox_out.c: ASCII-escape the text bodies to help lame parsers. Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox_out.c Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox_out.c URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/module-2.0/mod_mbox_out.c?rev=1029834&r1=1029833&r2=1029834&view=diff ============================================================================== --- httpd/mod_mbox/trunk/module-2.0/mod_mbox_out.c (original) +++ httpd/mod_mbox/trunk/module-2.0/mod_mbox_out.c Mon Nov 1 20:58:25 2010 @@ -87,7 +87,7 @@ void display_atom_entry(request_rec *r, m->cte, m->boundary); ap_rprintf(r, "%s", - mbox_wrap_text(mbox_mime_get_body(pool, m->mime_msg))); + mbox_ascii_escape(pool, mbox_wrap_text(mbox_mime_get_body(pool, m->mime_msg)))); ap_rputs("\n\n\n\n", r); ap_rputs("\n", r);