From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/33247 Path: main.gmane.org!not-for-mail From: Francisco Solsona Newsgroups: gmane.emacs.gnus.general Subject: Re: posting styles problem: "body" attribute Date: 07 Nov 2000 10:16:08 -0600 Organization: Universidad Nacional =?iso-8859-1?q?Aut=F3noma?= de =?iso-8859-1?q?M=E9xico?= Sender: owner-ding@hpc.uh.edu Message-ID: <86lmuvoj07.fsf@beta.fciencias.unam.mx> References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035169390 24142 80.91.224.250 (21 Oct 2002 03:03:10 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:03:10 +0000 (UTC) Return-Path: Original-Received: from spinoza.math.uh.edu (spinoza.math.uh.edu [129.7.128.18]) by mailhost.sclp.com (Postfix) with ESMTP id 79266D049A for ; Tue, 7 Nov 2000 11:15:16 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by spinoza.math.uh.edu (8.9.1/8.9.1) with ESMTP id KAB06555; Tue, 7 Nov 2000 10:14:44 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 07 Nov 2000 10:13:50 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id KAA23287 for ; Tue, 7 Nov 2000 10:13:40 -0600 (CST) Original-Received: from beta.fciencias.unam.mx (beta.fciencias.unam.mx [132.248.195.38]) by mailhost.sclp.com (Postfix) with SMTP id 14B81D049A for ; Tue, 7 Nov 2000 11:14:01 -0500 (EST) Original-Received: (qmail 69657 invoked by uid 1001); 7 Nov 2000 16:26:02 -0000 Mail-Copies-To: never Original-To: Ding list In-Reply-To: X-Home-Page: http://beta.fciencias.unam.mx/solsona/ X-Face: XI`I'XFz:@!GikP[^h$eg<'FAud8C5[vFg_iq&,\*PpZu_i&X->D._r#2d%+,8A^[1V-oV5 zs*8'}g#lvY)?n:zb-Kq/}_#P`1RBcXAHd'Q.ffG Original-Lines: 31 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Channel Islands) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:33247 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:33247 Bill White writes: [...] > So is it possible to make the "body" attribute in my posting style > insert its stuff *after* the newline? Or is there some other way to > automatically delete/disable the newline? The newline comes from `message-insert-signature' (see message.el), what you can do is to create your own function to insert the signature, for instance: ;; Untested! (defun my-sig () (interactive) (insert "Your cool signature here.")) and then you can use: ,----[ ~/.gnus ] | (setq gnus-posting-styles | '((".*" | (body "\n\nbw") | (signature my-sig)))) `---- Francisco (not newline removed) ;-) -- If you know everything - snap out of it. If you know nothing - don't be so modest. If you know something - work from there. -Alex Armstrong