From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/76546 Path: news.gmane.org!not-for-mail From: Francis Moreau Newsgroups: gmane.emacs.gnus.general Subject: how gnus-parameter works when several regexps match Date: Thu, 10 Feb 2011 13:04:28 +0100 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1297339537 26638 80.91.229.12 (10 Feb 2011 12:05:37 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 10 Feb 2011 12:05:37 +0000 (UTC) To: ding@gnus.org Original-X-From: ding-owner+M24893@lists.math.uh.edu Thu Feb 10 13:05:33 2011 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1PnVGp-0004hz-2o for ding-account@gmane.org; Thu, 10 Feb 2011 13:05:11 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1PnVGM-0000ic-Is; Thu, 10 Feb 2011 06:04:42 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1PnVGL-0000iH-3g for ding@lists.math.uh.edu; Thu, 10 Feb 2011 06:04:41 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.72) (envelope-from ) id 1PnVGJ-0002jO-TC for ding@lists.math.uh.edu; Thu, 10 Feb 2011 06:04:40 -0600 Original-Received: from mail-bw0-f44.google.com ([209.85.214.44]) by quimby.gnus.org with esmtp (Exim 4.72) (envelope-from ) id 1PnVGI-0001J5-9k for ding@gnus.org; Thu, 10 Feb 2011 13:04:38 +0100 Original-Received: by bwz12 with SMTP id 12so1902775bwz.17 for ; Thu, 10 Feb 2011 04:04:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:from:to:subject:mail-followup-to:date :message-id:user-agent:mime-version:content-type; bh=0HIaMaBEi570IOghlpo1VvnhVVdWu5VBUMYkor5qIb8=; b=bDTPo1UmRBK5vxEmw3iNT2Sv70WdnSuBgJtHlJkYcWXMu6z48Lqj245xulgzECjaQl /aOAaQivfysbxfQCvFkMydqYmLTDHKCfP223kHmPj4FqZo+RtXksSum7ZeKpCliDM9rx brl9IilHI7OmBVaaMllR48rqmE5U2p7XiGqxc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:subject:mail-followup-to:date:message-id:user-agent :mime-version:content-type; b=YoisIlzz+XsyDh+2IoJZATE76rkobctsnLMQrrCmGkCLFr3HU5hos+4bAIfIZgFnIJ l6NVOX6/bSVihsnap8qgjKgBvLlSiz4tgqzk6PS8o44KVZ0zLdc2gOwwlVyWPvKKO69Z Ihlx2OH9yWMeNm37H0n1JXE6ZVRZqgJIpYWbk= Original-Received: by 10.204.51.145 with SMTP id d17mr3251190bkg.24.1297339472434; Thu, 10 Feb 2011 04:04:32 -0800 (PST) Original-Received: from localhost (au213-1-82-235-205-153.fbx.proxad.net [82.235.205.153]) by mx.google.com with ESMTPS id v1sm927599bkt.5.2011.02.10.04.04.30 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 10 Feb 2011 04:04:31 -0800 (PST) Mail-Followup-To: ding@gnus.org User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Spam-Score: -3.0 (---) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:76546 Archived-At: Hi, let say I have this (taken from the gnus documentation): (setq gnus-parameters '(("mail\\..*" (gnus-show-threads nil) (gnus-use-scoring nil) (gnus-summary-line-format "%U%R%z%I%(%[%d:%ub%-23,23f%]%) %s\n") (gcc-self . t) (display . all)) ("^nnimap:\\(foo.bar\\)$" (to-group . "\\1")) ("mail\\.me" (gnus-use-scoring t)))) I'm wondering what the group parameters are for the group named 'mail.me'. Does it have group parameters defined by "mail\\.*" _and_ "mail\\.me" or only the last one ? I tried and it seems that it uses only the last match. If so is it possible to change this behaviour ? Thanks -- Francis