Gnus development mailing list
 help / color / mirror / Atom feed
From: Jordan Katz <underlevel@abas.host4u.net>
Subject: No news is bad news--where are my groups?
Date: Fri, 12 Jul 2002 22:03:03 -0500 (CDT)	[thread overview]
Message-ID: <Pine.LNX.4.44.0207122157120.3777-100000@abas.host4u.net> (raw)

Hi,

  Yesterday I switched from Red Hat 6.0 + Emacs 20 to Debian 3.0 (woody) 
with Emacs21.  I downloaded the latest version of Gnus, plugged in my old 
.gnus file, but it didn't quite work.  When I loaded Gnus it said that the 
nntp server couldn't be opened (I'm using mindspring.com to connect and 
I'm pretty sure the server's just mindspring.com--if anyone knows 
otherwise let me know) but I press 'y' to continue without.  Then, all my 
email messages were correctly downloaded, but no groups other than the 
ndrafts group were shown.  I have my .gnus file split my mail into groups, 
and I checked in ~/Mail and indeed the groups are there--there's a 
directory for each group and messages in it.  However, none are displayed.  
I tried doing M-x gnus-activate-all-groups but that didn't work.. I also 
tried doing U <name of group>, for example U mail.other  but it also 
didn't work.  Can someone please help me fix this issue?  My entire .gnus 
file is pasted below for reference. 

;; Basic settings
(setenv "MM_CHARSET" "iso-8859-1")
(setq gnus-select-method '(nntp "mindspring.com"))
(setq gnus-secondary-select-methods '((nnml "private")))
(setq mail-sources
      '((file)
        (pop :server "mail.underlevel.net"
             :user "underlevel"
             :password "mycoolpassword")))
(setq nnmail-split-methods
  '(("mail.xemacs-list" 
"^\\([Cc][Cc]\\|To\\|Sender\\).*xemacs@xemacs.org")
    ("mail.emacs-list" "^\\([Cc][Cc]\\|To\\|Sender\\).*cm@emacs.org")
    ("mail.umlug-list" 
"^\\([Cc][Cc]\\|To\\|Sender\\).*um-linux@Glue.umd.edu")
    ("mail.emacs-mail" "^\\([Cc][Cc]\\|To\\|Sender\\).*katz@emacs.org")
    ("mail.rdf-list" 
"^\\([Cc][Cc]\\|To\\|Sender\\).*www-rdf-interest@w3.org")
    ("mail.other" "")))
(setq gnus-permanently-visible-groups "\\(mail.*\\)")
(setq message-sendmail-f-is-evil t)

;; Fix the Sender: line
(setq user-mail-address "katz@underlevel.net")
(defun message-make-sender () "katz@underlevel.net")
(setq mail-use-rfc822 t)
(setq message-dont-reply-to-names "webmaster\\|katz")

;; Constantly check mail 
(setq gnus-use-demon t)
(defun gnus-demon-scan-news ()
  (when (gnus-alive-p)
    (save-excursion
      (set-buffer gnus-group-buffer)
      (gnus-group-get-new-news))
    )
  )
(defun gnus-demon-my-scan-mail ()
  (when (and (gnus-alive-p) mail-here)
    (save-excursion
      (set-buffer gnus-group-buffer)
      (gnus-group-get-new-news 3)
      )
    )
  )
(gnus-demon-add-handler 'gnus-demon-scan-news 20 5)
(gnus-demon-add-handler 'gnus-demon-my-scan-mail 20 5)
(gnus-demon-init)
(setq gnus-treat-display-smileys nil)
(setq gnus-local-organization "Initech")
(setq gnus-visible-headers 
"^From:\\|^To:\\|^Newsgroups:\\|^Subject:\\|^Date:\\|^Followup-To:\\|^Organization:\\|^To:\\|^Cc:\\|^X-Newsreader:\\|^X-Mailer:")
(setq user-mail-default-reply-to "webmaster@underlevel.net")
(setq message-user-organization "Initech")
(setq user-full-name    "Jordan Katz")
(setq message-cite-function 'message-cite-original-without-signature)

;; Set topics
(add-hook 'gnus-group-mode-hook 'gnus-topic-mode)

;; Line formatting
(setq gnus-group-line-format "%M%S%p%P%5y: %(%G %z%)\n")
(setq gnus-large-newsgroup 100)

;; Old article groups
;; Old mail group
(setq gnus-message-archive-group
      '((let ((current-archive-date-string
	       (format-time-string "%Y-%m" (current-time))))
	  (concat (if (message-news-p)
		      "news-"
		    "mail-")
		  current-archive-date-string))))
(setq gnus-total-expirable-newsgroups ".")
(setq nnmail-expiry-wait-function
      (lambda (group)
	(cond ((string-match "umlug-list" group)
	       14)
	      ((string-match "emacs-list" group)
	       1)
	      ((string-match "xemacs-list" group)
	       1)
       	      ((string-match "default" group)
	       365)
	      (t
	       31))))


Thanks a lot!
--
Jordan Katz <webmaster@underlevel.net>




             reply	other threads:[~2002-07-13  3:03 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-13  3:03 Jordan Katz [this message]
2002-07-13 10:23 ` Kai Großjohann
2002-07-13 17:35   ` Jordan Katz
2002-11-21  3:00 ` Lazybie question: How to migrate gnus client to different host William Goedicke
2002-11-21 13:28   ` Reiner Steib

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.LNX.4.44.0207122157120.3777-100000@abas.host4u.net \
    --to=underlevel@abas.host4u.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).