From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/29616 Path: main.gmane.org!not-for-mail From: posting-list@MailAndNews.com (Jari Aalto+mail.emacs) Newsgroups: gmane.emacs.gnus.general Subject: Re: RFC2369 - Mailing list & gnus Date: 22 Mar 2000 20:25:03 +0200 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 1035166258 3736 80.91.224.250 (21 Oct 2002 02:10:58 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:10:58 +0000 (UTC) Keywords: gnus,org,group,mailto,ding-request,to-list,subject,ding Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id 772F1D051F for ; Fri, 24 Mar 2000 00:28:57 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id XAB06329; Thu, 23 Mar 2000 23:28:42 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 23 Mar 2000 23:27:47 -0600 (CST) Original-Received: from epithumia.math.uh.edu (IDENT:root@epithumia.math.uh.edu [129.7.128.2]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id XAA13062 for ; Thu, 23 Mar 2000 23:27:41 -0600 (CST) Original-Received: (from tibbs@localhost) by epithumia.math.uh.edu (8.9.3/8.9.3) id XAA26289 for ding@hpc.uh.edu; Thu, 23 Mar 2000 23:27:54 -0600 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 PAA24504 for ; Wed, 22 Mar 2000 15:51:06 -0600 (CST) Original-Received: from ds9.sci.fi (ds9.sci.fi [195.74.0.54]) by mailhost.sclp.com (Postfix) with ESMTP id 732BED0520 for ; Wed, 22 Mar 2000 16:51:17 -0500 (EST) Original-Received: from poboxes.com (MCCCXXXIX.hdyn.saunalahti.fi [195.197.40.139]) by ds9.sci.fi (8.9.1/8.9.1) with ESMTP id XAA05789 for ; Wed, 22 Mar 2000 23:51:14 +0200 (EET) Original-To: ding@gnus.org X-Sender-Info: Emacs tiny tools: http://poboxes.com/jari.aalto/emacs-elisp.html http://home.eu.org/~jari/homepage.html PGP 2.6.x keyid 47141D35 http://www.pgpi.net/ In-Reply-To: Julien Gilles's message of "15 Mar 2000 14:11:45 +0100" User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.4 (i386-*-windows98.1998) Original-Lines: 47 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:29616 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:29616 * 2000-03-15 Julien Gilles | | some weeks ago someone mentionned the RFC 2369, about "The Use of URLs | as Meta-Syntax for Core Mail List Commands and their Transport through | Message Header Fields". wow. | | eg, my group parameters for nnml:ding : | | ((to-address . "ding@gnus.org") | (to-list . "ding@gnus.org") | (total-expire . t) | (expiry-wait . 20) | (admin-address . "ding-request@gnus.org") | (list-help "") | (list-unsubscribe "") | (list-subscribe "")) | | here is the file : | | | | Some questions/open points : | | - Is it possible to start gnus-mailing-list-mode only for some group | (not in gnus-group-mode-hook) ? Thanks for the code, I suggest that you automatically hook it to the Gnus when loaded by adding a function to gnus-summary-mode-hook. Something like this. User has to indicate a mailing list buffer by adding 'to-list group parameter in it. (add-hook 'gnus-summary-mode-hook 'turn-on-gnus-mailing-list-mode) (defun turn-on-gnus-mailing-list-mode () (when (gnus-group-get-parameter group 'to-list) (gnus-mailing-list-mode 1))) | - list-xxx variable are defined in the set of local variables. Is it | possible to have them like others group parameters ? (and how to use | them then ?) | | - the parser of the mailto syntaxe is very very simple, and don't | include http or ftp commands. Feel free to improve... | | All remarks and/or corrections are welcome... :-)