;; Author: Louis (usenet26@ossh.com) ;; Keywords: dotgnus, .gnus, ~/.gnus ;; Comments start with ';;' - remove ';;' from the start of lines to ;; activate. (setq gnus-select-method '(nntp "news.west.earthlink.net")) (add-to-list 'gnus-secondary-select-methods '(nntp "news.individual.net")) (setq message-default-news-headers "From: Louis \n") (setq user-mail-address "mainemail@ossh.com") (setq user-host-name "ossh.com") (setq user-sender "ossh.com") (setq user-full-name "firstName lastName") (setq gnus-secondary-select-methods '((nnml "private"))) ;; uncomment one of the following and edit depending on your ;; usage of mailspool / maildir format ;; For maildir style ;; (setq mail-sources ;; '((maildir ;; :path (expand-file-name "~/.maildir/")))) ;; For Sendmail Style mbox ;; (setq mail-sources ;; '((file :path "/var/mail/username"))) ;; Have gnus download mail directly from your ISP's SMTP server by ;; editing the following with your own information: ;; (eval-after-load "mail-source" ;; '(add-to-list 'mail-sources '(pop :server "mail.earthlink.net" ;; :user "username@earthlink.net" ;; :password "PASSWORD"))) ;; End of ~/.gnus