From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/11311 Path: news.gmane.org!not-for-mail From: Rodolfo Medina Newsgroups: gmane.emacs.gnus.user Subject: Defining a new nnml server with different nnml-directory Date: Wed, 20 Aug 2008 16:40:47 -0700 (PDT) Organization: http://groups.google.com Message-ID: <36c1d434-0a71-4bb7-9576-007bc7461da9@r66g2000hsg.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 1219279234 18327 80.91.229.12 (21 Aug 2008 00:40:34 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 21 Aug 2008 00:40:34 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Thu Aug 21 02:41:27 2008 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KVyEw-00054f-J8 for gegu-info-gnus-english@m.gmane.org; Thu, 21 Aug 2008 02:41:26 +0200 Original-Received: from localhost ([127.0.0.1]:55856 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KVyDz-0004vn-Ab for gegu-info-gnus-english@m.gmane.org; Wed, 20 Aug 2008 20:40:27 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!postnews.google.com!r66g2000hsg.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 25 Original-NNTP-Posting-Host: 217.202.117.11 Original-X-Trace: posting.google.com 1219275647 29731 127.0.0.1 (20 Aug 2008 23:40:47 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 20 Aug 2008 23:40:47 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: r66g2000hsg.googlegroups.com; posting-host=217.202.117.11; 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.gnus:81531 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:11311 Archived-At: 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 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