From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/9626 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.user Subject: Re: Hidden lines in the message body Date: Mon, 10 Sep 2007 09:51:24 +0900 Organization: Emacsen advocacy group Message-ID: References: <87hcm4zxlo.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1189388752 13090 80.91.229.12 (10 Sep 2007 01:45:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 10 Sep 2007 01:45:52 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Mon Sep 10 11:45:39 2007 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1IUfkS-0005UM-Pw for gegu-info-gnus-english@m.gmane.org; Mon, 10 Sep 2007 11:40:05 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IUYG6-0002OV-3A for gegu-info-gnus-english@m.gmane.org; Sun, 09 Sep 2007 21:40:14 -0400 Original-Path: shelby.stanford.edu!headwall.stanford.edu!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 35 Original-X-Trace: individual.net k0uAEyjo87lxrZpEEqzXagTitViRB4/uqzTS8aPbIWVuMQ/EI= Cancel-Lock: sha1:N0GiXtxhHemuDtTuE2DOMV++z98= sha1:jQLTiMKizjOnTdm+VF5cIsh7MgE= X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110007 (No Gnus v0.7) Emacs/23.0.50 (gnu/linux) Original-Xref: shelby.stanford.edu gnu.emacs.gnus:79828 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:9626 Archived-At: >>>>> Rodolfo Medina wrote: > I' attaching a text file containing eight lines. If I insert it in a message > (e.g. with `C-x i') and then send the message, in the message body only the > first and the fifth will be visible, the others won't. > Can anybody explain why this happens and how to avoid it? It is because of the MIME emulating feature of Gnus that is enabled by default. It splits peculiar sections, e.g. uuencoded data, non-MIME forwarded messages, etc., in the message body into MIME parts. Your problem is a typical case that this feature works unwillingly, that is, Gnus misidentifies the "------------------------------%<------------------------------" lines as the separators of the `insert-marks' part (See mm-uu.el). The MIME emulating feature works only when displaying articles. So, your messages will never be broken even if they look funny to the recipients who use Gnus. But there is no way to avoid it other than to ask the recipients to disable this feature. To do that: --8<---------------cut here---------------start------------->8--- (setq gnus-article-emulate-mime nil) --8<---------------cut here---------------end--------------->8--- or --8<---------------cut here---------------start------------->8--- (eval-after-load "mm-uu" '(add-to-list 'mm-uu-configure-list '(insert-marks . disabled))) --8<---------------cut here---------------end--------------->8--- Regards,