From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Rodolfo Medina Newsgroups: gmane.emacs.help Subject: Gnus: Defining a new nnml server with a different nnml-directory Date: Thu, 21 Aug 2008 08:50:40 -0700 (PDT) Organization: http://groups.google.com Message-ID: <62a789ce-6814-4cf2-b59d-26225be43b79@e53g2000hsa.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1219337669 7967 80.91.229.12 (21 Aug 2008 16:54:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 21 Aug 2008 16:54:29 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Aug 21 18:55:21 2008 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KWDRQ-0004tZ-Px for geh-help-gnu-emacs@m.gmane.org; Thu, 21 Aug 2008 18:55:21 +0200 Original-Received: from localhost ([127.0.0.1]:51487 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KWDQT-0002SE-9k for geh-help-gnu-emacs@m.gmane.org; Thu, 21 Aug 2008 12:54:21 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!e53g2000hsa.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 28 Original-NNTP-Posting-Host: 217.201.197.3 Original-X-Trace: posting.google.com 1219333841 29097 127.0.0.1 (21 Aug 2008 15:50:41 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Thu, 21 Aug 2008 15:50:41 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: e53g2000hsa.googlegroups.com; posting-host=217.201.197.3; posting-account=wZXy0QoAAAAhtBZKWAm8LXNQiduN_lqT User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.11) Gecko/20070217 Iceape/1.0.8 (Debian-1.0.8-4),gzip(gfe),gzip(gfe) Original-Xref: news.stanford.edu gnu.emacs.help:161513 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:56857 Archived-At: I aready postes this on gnu.emacs.gnus but got no solution. In my .gnus.el, I have: (setq gnus-select-method '(nnml "")) (setq nnmail-split-methods '(("inbox" ""))) , and all new mail messages are put in the `inbox' group and stored in the "~/Mail/inbox" directory. Now, I want to create a new nnml server, say `test', but with a different nnml-directory, say "~/my-dir/" in place of "~/Mail/". Then I put in .gnus.el the following stuff: (setq gnus-secondary-select-methods '((nnml "test" (nnml-directory "~/my-dir/") (nnml-active-file "~/my-dir/active") (nnml-newsgroups-file "~/my-dir/newsgroups")))) . But now my inbox messages are stored in "~/my-dir/inbox", that I don't want. How can I avoid that? Thanks for any help Rodolfo