Gnus development mailing list
 help / color / mirror / Atom feed
From: Per Abrahamsen <abraham@dina.kvl.dk>
Subject: gnus-virgin.el (was: Re: A road map for Oort Gnus)
Date: 16 Apr 2001 09:50:03 +0200	[thread overview]
Message-ID: <rju23p8es4.fsf_-_@ssv2.dina.kvl.dk> (raw)
In-Reply-To: <877l0lbv10.fsf@harpo.homeip.net> (Samuel Padgett's message of "15 Apr 2001 19:30:51 -0400")

Oops, I accidently left some debug code in.

;;; gnus-virgin.el --- Run Gnus for the very first time.
;;
;; Copyright (C) 2001 Free Software Foundation, Inc.
;;
;; Author: Per Abrahamsen <abraham@dina.kvl.dk>
;; Keywords: news, mail, help
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, write to the
;; Free Software Foundation, Inc., 59 Temple Place, Suite 330,
;; Boston, MA 02111-1307, USA.

;;; Comments:
;;
;; Gentle introduction to Gnus.

;;; Code: 

(defcustom gnus-virgin t 
  "Non-nil (on) means user haven't finished Gnus setup yet.
Set this option to false if you want to avoid getting this buffer next
time you start Gnus.  That is, you *must* unset this flag in order to
start Gnus for real."
  :type 'boolean)

(defgroup gnus-virgin '((gnus-virgin custom-variable)
			(user-full-name custom-variable)
			(user-mail-address custom-variable)
			(message-user-organization custom-variable)
			(gnus-select-method custom-variable)
			(gnus-secondary-select-methods custom-variable))
  "Setup Gnus for the very first time.

This buffer contains the options that most people need to set in order
to use Gnus for reading Mail and Usenet newsgroups.  You should look
at each of the options below (use the \"Show\" buttons when needed),
set their value as appropriate, and then press the \"Save for Future
Sessions\" button.  Viola!  Gnus should be ready to use.  You can then
start Gnus by typing with `M-x gnus <ret>'. If you ever want to
revisit these option, type `M-x customize-group <ret> gnus-virgin
<ret>'.

Please note that there are many more options in Gnus than those listed
below.  Just about everything about Gnus is customizable.  To see all
the options, type `M-x customize-group <ret> gnus <ret>'.

Now about the individual options:

\"Virgin\": Set this to off using the Toggle button, efter you have
finished with the other options.

\"User Full Name\" and \"User Mail Address\": Type in your name and
e-mail address in the text fields.

\"Message User Organization\": Select \"String\" by clicking the right
mouse button on the Value Menu, then enter the name of the
organization you want to be associated with in your mail and news messages.

\"Select Method\": Select \"nntp\" from teh Value Menu, then type in
the name of your news server in the text field below.  If you don't
know the name of your news server, ask your ISP.

\"Secondary Select Methods\": This one has two purposes, reading mail
and connecting to specialized news servers.  

Here is how to use it for mail.  Ignore it if you don't want to use
Gnus for reading mail.  If you *do* want to use Gnus for mail, be
warned that Gnus will download all your mail so you can't use other
mailers as well.  Stil here?  Good.  Gnus as a mail reader is strange,
but cool.  Type the Ins button.  A \"Select Method\" entry should
appear.  Now select \"nnimap\" from the Value Menu and type the name
of the server you want to read mail from.  Again, your ISP should know
the correct name.

Using it for extra news servers is similar.  Push the Ins button to
get a new \"Select Method\" entry.  Select \"nntp\" from the Value
Menu.  Write the address of the server you want to connect to in the
text field below.  Repeat for each server you want to read news.  Try
for example \"quimby.gnus.org\", a server that onbly carry Gnus
releated newsgroups."
  :link '(custom-manual "(gnus)Top")
  :link '(url-link :tag "Development Page" "http://www.gnus.org/")
  :prefix "gnus-"
  :group 'gnus
  :group 'wizards)

(defun gnus-virgin ()
  "Setup gnus for the very first time.  Please be gentle. 
Or just run it if already experienced."
  (interactive)
  (if gnus-virgin
      (customize-group 'gnus-virgin)
    (call-interactively 'gnus)))

;;; gnus-virgin.el ends here


  reply	other threads:[~2001-04-16  7:50 UTC|newest]

Thread overview: 63+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-04-14 10:31 A road map for Oort Gnus Lars Magne Ingebrigtsen
2001-04-14 10:53 ` Alexandre Oliva
2001-04-14 12:35   ` Per Abrahamsen
2001-04-14 13:12     ` Lars Magne Ingebrigtsen
2001-04-14 14:42       ` Wizards and W3 integration (was: Re: A road map for Oort Gnus) Per Abrahamsen
2001-04-14 15:22         ` Wizards and W3 integration Raymond Scholz
2001-04-14 15:45         ` Re[1]: Wizards and W3 integration (was: A road map for Oort Gnus) Eric M. Ludlam
2001-04-14 16:38         ` Wizards and W3 integration (was: " Eli Zaretskii
2001-04-16 16:49           ` Lars Magne Ingebrigtsen
2001-04-16 19:05             ` Eli Zaretskii
2001-04-17 10:57               ` Per Abrahamsen
2001-04-17 13:25                 ` Eli Zaretskii
2001-04-17 13:43                   ` Per Abrahamsen
2001-04-17 15:13                     ` Eli Zaretskii
2001-04-17 15:34                       ` Per Abrahamsen
2001-04-17 15:44                         ` Kai Großjohann
2001-04-17 15:45                         ` Laura Conrad
2001-04-17 13:57                   ` William M. Perry
2001-04-17 15:04                     ` Eli Zaretskii
2001-04-16 20:28             ` Kai Großjohann
2001-04-16 20:57             ` Wizards and W3 integration Robin S. Socha
2001-04-17  7:05               ` Eli Zaretskii
2001-04-17  6:12                 ` Norbert Koch
2001-04-17 14:02                 ` Robin S. Socha
2001-04-17 14:14                   ` Michael Livshin
2001-04-17 14:29                     ` Robin S. Socha
2001-04-17 14:35                       ` [noise] " Michael Livshin
2001-04-14 10:57 ` A road map for Oort Gnus Robin S. Socha
2001-04-14 13:15   ` Harry Putnam
2001-04-14 13:19   ` Lars Magne Ingebrigtsen
2001-04-16  0:06     ` Albert Krusbersky
2001-04-14 16:04   ` Per Abrahamsen
2001-04-15 13:20     ` Robin S. Socha
2001-04-15 22:58       ` Kai Großjohann
2001-04-15 23:30         ` Samuel Padgett
2001-04-16  7:50           ` Per Abrahamsen [this message]
2001-04-16 13:23             ` gnus-virgin.el Robin S. Socha
2001-04-17 10:52             ` gnus-virgin.el (was: Re: A road map for Oort Gnus) Didier Verna
2001-04-17 11:02               ` Per Abrahamsen
2001-04-17 12:00               ` Kai Großjohann
2001-04-17 12:30                 ` Didier Verna
2001-04-17 17:12                 ` Colin Marquardt
2001-04-17 21:04                 ` Stainless Steel Rat
2001-04-17  8:49   ` A road map for Oort Gnus Christoph Rohland
2001-04-17 15:09     ` Amos Gouaux
2001-04-17 15:31       ` Simon Josefsson
2001-04-18 13:17         ` Christoph Rohland
2001-04-17 15:39       ` Kai Großjohann
2001-04-14 10:58 ` Kai Großjohann
2001-04-14 13:22   ` Lars Magne Ingebrigtsen
2001-04-14 13:42     ` Michael Livshin
2001-04-15 23:01       ` Kai Großjohann
2001-04-17 18:08     ` Didier Verna
2001-04-17 18:05       ` Kai Großjohann
2001-04-17 18:21         ` Didier Verna
2001-04-17 17:47   ` Didier Verna
2001-04-17 18:04     ` Kai Großjohann
2001-04-14 13:58 ` NAGY Andras
2001-04-14 21:51   ` Steinar Bang
2001-04-15 23:02   ` Kai Großjohann
2001-04-16  6:01     ` Amos Gouaux
2001-04-16 18:06       ` Doug Alcorn
2001-04-16 21:10   ` Paul Jarc

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=rju23p8es4.fsf_-_@ssv2.dina.kvl.dk \
    --to=abraham@dina.kvl.dk \
    /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).