From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/5690 Path: news.gmane.org!not-for-mail From: romeomedina@libero.it Newsgroups: gmane.emacs.gnus.user Subject: nnml-active-file customization Date: 19 Sep 2005 05:41:28 -0700 Organization: http://groups.google.com Message-ID: <1127133688.493087.217410@o13g2000cwo.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1138671369 28473 80.91.229.2 (31 Jan 2006 01:36:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:36:09 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:35:41 2006 Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!news.nask.pl!newsfeed.pionier.net.pl!news.glorb.com!postnews.google.com!o13g2000cwo.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: 151.26.59.229 Original-X-Trace: posting.google.com 1127133694 352 127.0.0.1 (19 Sep 2005 12:41:34 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Mon, 19 Sep 2005 12:41:34 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.2) Gecko/20040804,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: o13g2000cwo.googlegroups.com; posting-host=151.26.59.229; posting-account=jAR8oAwAAAAzWEZi_PGTqTf56RwG205B Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:5832 Original-Lines: 55 X-Gnus-Article-Number: 5832 Tue Jan 17 17:35:41 2006 Xref: news.gmane.org gmane.emacs.gnus.user:5690 Archived-At: Hi. I put in my ~/.emacs the following: (setq my-nnml-directory "/path/to/my/nnml/directory/") , and in my ~/.gnus.el the following (see thread 'nnml-direcory customiztion' on the present newsgroup): (setq gnus-select-method `(nnml "" (nnml-directory ,my-nnml-directory))) , and it worked fine. Now, if I implement the gnus-select-method setting this way: (setq gnus-select-method `(nnml "" (nnml-directory ,my-nnml-directory) (nnml-active-file "/path/to/my/nnml/directory/bla-bla/active") )) , everything seems to be all right: I get no error messages. Instead, if I do: (setq gnus-select-method `(nnml "" (nnml-directory ,my-nnml-directory) (nnml-active-file (concat my-nnml-directory "bla-bla/active")) )) , when starting gnus I get an error message: Wrong type argument: stringp, (concat my-nnml-directory "bla-bla/active") . I also tried with: (setq gnus-select-method `(nnml "" (nnml-directory ,my-nnml-directory) `(nnml-active-file (concat ,my-nnml-directory "bla-bla/active")) )) . This way I get no error messages but if I do: 'C-h v nnml-active-file RET' I see that the value of 'nnml-active-file' is not what I want, i.e. "/path/to/my/nnml/directory/bla-bla/active". Any suggestion about what the right syntax should be in ~/.gnus.el in order to set 'nnml-active-file' to the desired value using 'concat'? Thanks, Rodolfo