From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/15218 Path: main.gmane.org!not-for-mail From: Ralph Schleicher Newsgroups: gmane.emacs.gnus.general Subject: Integrating Gnus into Emacs Date: 27 May 1998 22:27:54 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1035154290 20891 80.91.224.250 (20 Oct 2002 22:51:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:51:30 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.8.8/8.8.8) with ESMTP id SAA16198 for ; Wed, 27 May 1998 18:40:03 -0700 Original-Received: from sina.hpc.uh.edu (root@Sina.HPC.UH.EDU [129.7.3.5]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id VAA27782 for ; Wed, 27 May 1998 21:36:55 -0400 Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id UAH23707; Wed, 27 May 1998 20:36:57 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Wed, 27 May 1998 20:32:33 -0500 (CDT) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id UAA23694 for ; Wed, 27 May 1998 20:32:20 -0500 (CDT) Original-Received: (qmail 8467 invoked by uid 504); 28 May 1998 01:32:00 -0000 Original-Received: (qmail 8464 invoked from network); 28 May 1998 01:31:59 -0000 Original-Received: from donau.ul.bawue.de (@193.197.64.2) by claymore.vcinet.com with SMTP; 28 May 1998 01:31:58 -0000 Original-Received: by donau.ul.bawue.de (/\==/\ Smail3.1.25.1 #25.14) id ; Thu, 28 May 98 03:31 MET DST Original-Received: from charlie.purple.UL.BaWue.DE (rs@charlie.purple.UL.BaWue.DE [192.168.42.3]) by alfa.purple.UL.BaWue.DE (8.6.10/8.6.10) with ESMTP id WAA24007 for ; Wed, 27 May 1998 22:21:31 +0200 Original-Received: (from rs@localhost) by charlie.purple.UL.BaWue.DE (8.7.5/8.6.10) id WAA17317; Wed, 27 May 1998 22:28:01 +0200 Original-To: ding@gnus.org Original-Lines: 24 X-Mailer: Gnus v5.5/Emacs 20.2 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:15218 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:15218 My girl friend started reading and writing mail using Emacs a few weeks ago. Since she is a real Computer/Unix/Emacs novice, I had to replace the standard Emacs mail commands with Gnus equivalents. I ended up with the following code in her personal Emacs initialization file: ;;; Replace the standard mail commands with Gnus equivalents. (defun gnus-mail () "Start composing a mail." (interactive) (unless (get-buffer "*Group*") (save-window-excursion (gnus))) (gnus-group-mail)) (define-key ctl-x-map "m" 'gnus-mail) (define-key-after menu-bar-tools-menu [rmail] '("Read Mail" . gnus) 'gnus) (define-key-after menu-bar-tools-menu [compose-mail] '("Send Mail" . gnus-mail) 'rmail)) Maybe this code is useful for the FAQ. -- Ralph