From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/2462 Path: news.gmane.org!not-for-mail From: kai.grossjohann@gmx.net (=?iso-8859-1?q?Kai_Gro=DFjohann?=) Newsgroups: gmane.emacs.gnus.user Subject: Re: POPing mail using Gnus, how do I do it? Date: Sat, 10 May 2003 21:41:09 +0200 Organization: University of Duisburg, Germany Message-ID: <841xz6a8tm.fsf@lucy.is.informatik.uni-duisburg.de> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138668884 15206 80.91.229.2 (31 Jan 2006 00:54:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 00:54:44 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:30:44 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!nsc.no!nextra.com!news.tele.dk!news.tele.dk!small.news.tele.dk!fu-berlin.de!uni-berlin.de!pd951fb3b.dip.t-dialin.NET!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: pd951fb3b.dip.t-dialin.net (217.81.251.59) Original-X-Trace: fu-berlin.de 1052595832 21153391 217.81.251.59 (16 [73968]) Mail-Copies-To: never User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:B1rP+79vtiKSDJU09TzEZDSqJJM= Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:2602 Original-Lines: 49 X-Gnus-Article-Number: 2602 Tue Jan 17 17:30:44 2006 Xref: news.gmane.org gmane.emacs.gnus.user:2462 Archived-At: Andreas Davour writes: > Now, the code I added to my .gnus is as follows: > ;; mailreading > (add-to-list 'gnus-secondary-select-methods > '(nnmbox "tempo" ; the name of my virtual mbox > (nnmbox-mbox-file "~/Mail/INBOX") > (nnmbox-active-file "~/Mail/inbox.active"))) > > ; data for my mail source > (setq mail-sources '((pop :server "pop.update.uu.se" > :user "ante"))) > > This is code I've pieced together from reading the manual and when it > didn't work, some parts from the web. I'm afraid I don't understand it, > and why it doesn't work. I never get to type my POP password and a > buffer called INBOX is created everytime I run Gnus. That's not what I > wanted. Nothing new shows up in my Group buffer. Should it? > > Anybody here who can tell me what I'm doing wrong and maybe tell me why > it does what it does? Hm. Why does Gnus not contact your POP server? I'm surprised. Anyhow, the INBOX buffer is normal: Emacs works with data stored in buffers, so the contents of the file ~/Mail/INBOX also needs to be in a buffer. As to the groups, hit `^' when in the *Group* buffer, then hit RET on the nnmbox server. This shows a list of groups, you can subscribe to them with `u'. What happens if you hit `g' after starting Gnus? You say that your MTA delivers mail to an mbox file. Is it the file ~/Mail/INBOX? That would be very bad. Gnus does not like other programs to mess with its files. If it is another file, /var/mail/ante, say, then try to add a file entry to mail-sources to check if getting mail works in principle: (setq mail-sources '((pop ...) (file :path "/var/mail/ante"))) Does "emacs -debug-init" show an error when starting Emacs? Is there an error message when you start Gnus? -- This line is not blank.