From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29410 Path: main.gmane.org!not-for-mail From: Kevin Falcone Newsgroups: gmane.emacs.gnus.general Subject: Re: Fcc'd stuff into r/w Gnus group? Date: 06 Mar 2000 18:16:22 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035166085 2636 80.91.224.250 (21 Oct 2002 02:08:05 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:08:05 +0000 (UTC) Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by mailhost.sclp.com (Postfix) with ESMTP id B93BFD051E for ; Mon, 6 Mar 2000 18:18:05 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id RAB24139; Mon, 6 Mar 2000 17:17:04 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 06 Mar 2000 17:16:36 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id RAA10920 for ; Mon, 6 Mar 2000 17:16:26 -0600 (CST) Original-Received: from sierra.seas.upenn.edu (sierra.seas.upenn.edu [158.130.64.180]) by mailhost.sclp.com (Postfix) with ESMTP id 7D270D051E for ; Mon, 6 Mar 2000 18:16:28 -0500 (EST) Original-Received: from bowline.jibsheet.com. (GOLDBERG-226-107.RESNET.UPENN.EDU [130.91.226.107]) by sierra.seas.upenn.edu (8.9.3/8.9.3) with ESMTP id SAA27488 for ; Mon, 6 Mar 2000 18:16:27 -0500 (EST) X-Mailer: emacs 20.6.1 (via feedmail 8 I) Original-To: ding@gnus.org X-Attribution: KF In-Reply-To: Brian May's message of "07 Mar 2000 09:48:52 +1100" Original-Lines: 38 User-Agent: Gnus/5.0804 (Gnus v5.8.4) Emacs/20.6 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29410 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29410 >>>>> "BM" == Brian May writes: >>>>> "David" == David S Goldberg writes: David> This is, in fact exactly what I do when I use message-mode David> from outside of gnus. Since I don't need it very often, David> I'm too lazy to find/install/test the neat bits that have David> been posted that call gnus-group-mail from other packages. BM> What "neat bits" have been posted to do this? I would really like to BM> be able to do this... I have the following in my .emacs, which seem to do what you requested. Unfortunately, I don't know who deserves credit for these. ;;make gnus the only mail mode (require 'message) (require 'gnus-msg) (define-mail-user-agent 'gnus-user-agent 'gnus-mail 'message-send-and-exit 'message-kill-buffer 'message-send-hook) (defun gnus-mail (&rest args) "Start editing a mail message to be sent gnus style. Use message mode as the underlying agent." (unless (and (fboundp 'gnus-alive-p) (gnus-alive-p)) (gnus-no-server) (gnus-group-suspend)) (gnus-setup-message 'message (apply 'message-mail args))) (setq mail-user-agent 'gnus-user-agent) -kevin -- Kevin Falcone "The Windows Perl motto: It's just as well there's more than one way to do it because most of them don't work." -- Simon Cozens