From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/4271 Path: news.gmane.org!not-for-mail From: David Mazieres (address expires 27 Dec 2004) Newsgroups: gmane.emacs.gnus.user Subject: Seeing unsubscribed groups with nnimap Date: 27 Nov 2004 13:30:59 -0500 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138670236 22576 80.91.229.2 (31 Jan 2006 01:17:16 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:17:16 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:33:30 2006 Original-Path: quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: dsl081-203-130.nyc2.dsl.speakeasy.net Original-X-Trace: quimby.gnus.org 1101580259 12885 64.81.203.130 (27 Nov 2004 18:30:59 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Sat, 27 Nov 2004 18:30:59 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:4412 Original-Lines: 47 X-Gnus-Article-Number: 4412 Tue Jan 17 17:33:30 2006 Xref: news.gmane.org gmane.emacs.gnus.user:4271 Archived-At: I'm using nnimap with the Dovecot imap server. I'm running gnus version 5.9.0 (the version that comes with GNU emacs 21.3). Mostly things are working well, but I can't figure out how to see a list of new groups/folders that are unsubscribed. My email setup periodically creates new folders on-the-fly during the delivery process, and I need a way to see these new folders and subscribe them. I tried putting: (setq gnus-subscribe-newsgroup-method 'gnus-subscribe-hierarchically) in my .gnus, but this doesn't seem to have an effect on the nnimap back end. Nor do the "A k" or "A z" commands show my new groups, as they would for nntp. Fortunately, I *can* see all the folders if I type "A A" (gnus-group-list-active). This is nearly satisfactory. The problem is that the "A A" view doesn't show me what newsgroups I have already subscribed to. So I can hold down the "u" key to toggle subscription/unsubscription to all groups. This then shows me what I'm subscribed to and what I'm not, but only after flipping everything. So then I have to flip everything back except the groups I want to subscribe to. Given the gnus philosophy, I'm thinking there has to be a more convenient way of doing this! Can anyone give me suggestions? For what it's worth, the relevant portions of my .gnus file look basically like this: (setq dovecot (concat "exec env MAIL=maildir:/my/home/dir/Mail/" " /usr/local/libexec/dovecot/imap")) (setq my-server `(nnimap "MY-SERVER" (imap-shell-program (,(concat "cd && test -d Mail/INBOX && " dovecot) ,(concat "ssh -ax -o\"BatchMode yes\" MY-SERVER.EDU " dovecot) )) (nnimap-stream shell) )) (setq gnus-select-method my-server) (setq gnus-message-archive-method my-server) Thanks for any help, David