From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/15702 Path: main.gmane.org!not-for-mail From: Paul Franklin Newsgroups: gmane.emacs.gnus.general Subject: Re: autoreply function? Date: 21 Jul 1998 21:35:19 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035154687 23527 80.91.224.250 (20 Oct 2002 22:58:07 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:58:07 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.9.1/8.9.1) with ESMTP id VAA16025 for ; Tue, 21 Jul 1998 21:41:57 -0700 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id AAA10313 for ; Wed, 22 Jul 1998 00:38:17 -0400 Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id XAS07445; Tue, 21 Jul 1998 23:08:50 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 21 Jul 1998 23:35:29 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id XAA16260 for ; Tue, 21 Jul 1998 23:35:22 -0500 (CDT) Original-Received: from hirame.cs.washington.edu (hirame.cs.washington.edu [128.95.4.41]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id AAA16964 for ; Wed, 22 Jul 1998 00:35:21 -0400 (EDT) Original-Received: (paul@localhost) by hirame.cs.washington.edu (8.8.8+CS/7.2ws+) id VAA03119; Tue, 21 Jul 1998 21:35:19 -0700 Original-To: ding@gnus.org In-Reply-To: Stefan Waldherr's message of "Tue, 21 Jul 1998 18:46:18 GMT" Original-Lines: 30 X-Mailer: Gnus v5.6.4/XEmacs 20.3 - "Vatican City" Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:15702 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:15702 Well, I do something sort of weird to achieve the same effect: (defun pdf-gnus-group-hack-cwd () "Change the current directory, so POP mail gets checked." (setq default-directory nnml-directory)) (add-hook 'gnus-group-mode-hook 'pdf-gnus-group-hack-cwd) With this in place, I start with the keystrokes R C-x i and then I use filename completion to enter the response I want. You should probably not use nnml-directory, and you might actually want to set it in a message-mode hook. (Setting it here will only set it for message buffers coming from Gnus. I think.) Another idea is (setq default-directory (concat gnus-directory "tmpl/")) (I was setting the current directory for different reasons, and stumbled upon this "feature", which I originally considered a side effect.) --Paul >>>>> Stefan Waldherr writes: > anyone knows of an autoreply function for gnus? I envision > something where you read an incoming mail, hit one or two keys > and gnus will cite the original, append a pre-defined reply and > send it. This feature would really be cool if you have to reply > more or less the same stuff to a number of incoming mails (not at > the same time, of course).