annotate lisp/gnus/gnus-setup.el @ 78:c7528f8e288d r20-0b34

Import from CVS: tag r20-0b34
author cvs
date Mon, 13 Aug 2007 09:05:42 +0200
parents 131b0175ea99
children 0d2f883870bc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gnus-setup.el --- Initialization & Setup for Gnus 5
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
2 ;; Copyright (C) 1995, 96, 97 Free Software Foundation, Inc.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
4 ;; Author: Steven L. Baur <steve@altair.xemacs.org>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: news
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;; My head is starting to spin with all the different mail/news packages.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; Stop The Madness!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; Given that Emacs Lisp byte codes may be diverging, it is probably best
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; not to byte compile this, and just arrange to have the .el loaded out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; of .emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
32 ;; Dec-28 1996: Updated for better handling of preinstalled Gnus
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
33
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
36 (eval-when-compile
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
37 (require 'cl))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
38
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (defvar running-xemacs (string-match "XEmacs\\|Lucid" emacs-version))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
41 (defvar gnus-use-installed-gnus t
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
42 "*If non-nil Use installed version of Gnus.")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
43
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
44 (defvar gnus-use-installed-tm running-xemacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
45 "*If non-nil use installed version of tm.")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
46
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
47 (defvar gnus-use-installed-mailcrypt running-xemacs
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
48 "*If non-nil use installed version of mailcrypt.")
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
49
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (defvar gnus-emacs-lisp-directory (if running-xemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 "/usr/local/lib/xemacs/"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 "/usr/local/share/emacs/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 "Directory where Emacs site lisp is located.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (defvar gnus-gnus-lisp-directory (concat gnus-emacs-lisp-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 "gnus-5.0.15/lisp/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 "Directory where Gnus Emacs lisp is found.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (defvar gnus-tm-lisp-directory (concat gnus-emacs-lisp-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 "site-lisp/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 "Directory where TM Emacs lisp is found.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (defvar gnus-mailcrypt-lisp-directory (concat gnus-emacs-lisp-directory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 "site-lisp/mailcrypt-3.4/")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 "Directory where Mailcrypt Emacs Lisp is found.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (defvar gnus-bbdb-lisp-directory (concat gnus-emacs-lisp-directory
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
68 "site-lisp/bbdb-1.51/")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 "Directory where Big Brother Database is found.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
71 (defvar gnus-use-tm running-xemacs
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 "Set this if you want MIME support for Gnus")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar gnus-use-mhe nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 "Set this if you want to use MH-E for mail reading")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (defvar gnus-use-rmail nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 "Set this if you want to use RMAIL for mail reading")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (defvar gnus-use-sendmail t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 "Set this if you want to use SENDMAIL for mail reading")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (defvar gnus-use-vm nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 "Set this if you want to use the VM package for mail reading")
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
81 (defvar gnus-use-sc t
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 "Set this if you want to use Supercite")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (defvar gnus-use-mailcrypt t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 "Set this if you want to use Mailcrypt for dealing with PGP messages")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (defvar gnus-use-bbdb nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 "Set this if you want to use the Big Brother DataBase")
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
87 (defvar gnus-use-september nil
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
88 "Set this if you are using the experimental September Gnus")
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
90 (when (and (not gnus-use-installed-gnus)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
91 (null (member gnus-gnus-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
92 (setq load-path (cons gnus-gnus-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
93
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
94 (require 'message)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ;;; Tools for MIME by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;;; UMEDA Masanobu <umerin@mse.kyutech.ac.jp>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ;;; MORIOKA Tomohiko <morioka@jaist.ac.jp>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
100 (when gnus-use-tm
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
101 (when (and (not gnus-use-installed-tm)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
102 (null (member gnus-tm-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
103 (setq load-path (cons gnus-tm-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
104 ;; tm may or may not be dumped with XEmacs. In Sunpro it is, otherwise
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
105 ;; it isn't.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
106 (unless (featurep 'mime-setup)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
107 (load "mime-setup")))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ;;; Mailcrypt by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ;;; Jin Choi <jin@atype.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ;;; Patrick LoPresti <patl@lcs.mit.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
113 (when gnus-use-mailcrypt
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
114 (when (and (not gnus-use-installed-mailcrypt)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
115 (null (member gnus-mailcrypt-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
116 (setq load-path (cons gnus-mailcrypt-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
117 (autoload 'mc-install-write-mode "mailcrypt" nil t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
118 (autoload 'mc-install-read-mode "mailcrypt" nil t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
119 (add-hook 'message-mode-hook 'mc-install-write-mode)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
120 (add-hook 'gnus-summary-mode-hook 'mc-install-read-mode)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
121 (when gnus-use-mhe
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
122 (add-hook 'mh-folder-mode-hook 'mc-install-read-mode)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
123 (add-hook 'mh-letter-mode-hook 'mc-install-write-mode)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;;; BBDB by
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
126 ;;; Jamie Zawinski <jwz@netscape.com>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
128 (when gnus-use-bbdb
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
129 ;; bbdb will never be installed with emacs.
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
130 (when (null (member gnus-bbdb-lisp-directory load-path))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
131 (setq load-path (cons gnus-bbdb-lisp-directory load-path)))
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
132 (autoload 'bbdb "bbdb-com"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
133 "Insidious Big Brother Database" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
134 (autoload 'bbdb-name "bbdb-com"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
135 "Insidious Big Brother Database" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
136 (autoload 'bbdb-company "bbdb-com"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
137 "Insidious Big Brother Database" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
138 (autoload 'bbdb-net "bbdb-com"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
139 "Insidious Big Brother Database" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
140 (autoload 'bbdb-notes "bbdb-com"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
141 "Insidious Big Brother Database" t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
143 (when gnus-use-vm
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
144 (autoload 'bbdb-insinuate-vm "bbdb-vm"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
145 "Hook BBDB into VM" t))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
147 (when gnus-use-rmail
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
148 (autoload 'bbdb-insinuate-rmail "bbdb-rmail"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
149 "Hook BBDB into RMAIL" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
150 (add-hook 'rmail-mode-hook 'bbdb-insinuate-rmail))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
152 (when gnus-use-mhe
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
153 (autoload 'bbdb-insinuate-mh "bbdb-mh"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
154 "Hook BBDB into MH-E" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
155 (add-hook 'mh-folder-mode-hook 'bbdb-insinuate-mh))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
157 (autoload 'bbdb-insinuate-gnus "bbdb-gnus"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
158 "Hook BBDB into Gnus" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
159 (add-hook 'gnus-startup-hook 'bbdb-insinuate-gnus)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
161 (when gnus-use-sendmail
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
162 (autoload 'bbdb-insinuate-sendmail "bbdb"
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
163 "Insidious Big Brother Database" t)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
164 (add-hook 'mail-setup-hook 'bbdb-insinuate-sendmail)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
165 (add-hook 'message-setup-hook 'bbdb-insinuate-sendmail)))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
167 (when gnus-use-sc
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
168 (add-hook 'mail-citation-hook 'sc-cite-original)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
169 (setq message-cite-function 'sc-cite-original)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
170 (autoload 'sc-cite-original "supercite"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
172 ;;;### (autoloads (gnus-batch-score gnus-fetch-group gnus gnus-slave gnus-no-server gnus-update-format) "gnus" "lisp/gnus.el" (12473 2137))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;;; Generated autoloads from lisp/gnus.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
175 ;; Don't redo this if autoloads already exist
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
176 (unless (fboundp 'gnus)
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
177 (autoload 'gnus-update-format "gnus" "\
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
178 Update the format specification near point." t nil)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
179
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
180 (autoload 'gnus-slave-no-server "gnus" "\
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 Read network news as a slave without connecting to local server." t nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
183 (autoload 'gnus-no-server "gnus" "\
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 Read network news.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 If ARG is a positive number, Gnus will use that as the
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
186 startup level. If ARG is nil, Gnus will be started at level 2.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 If ARG is non-nil and not a positive number, Gnus will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 prompt the user for the name of an NNTP server to use.
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
189 As opposed to `gnus', this command will not connect to the local server."
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
190 t nil)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
192 (autoload 'gnus-slave "gnus" "\
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 Read news as a slave." t nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
195 (autoload 'gnus "gnus" "\
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 Read network news.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 If ARG is non-nil and a positive number, Gnus will use that as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 startup level. If ARG is non-nil and not a positive number, Gnus will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 prompt the user for the name of an NNTP server to use." t nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
201 (autoload 'gnus-fetch-group "gnus" "\
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 Start Gnus if necessary and enter GROUP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 Returns whether the fetching was successful or not." t nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
205 (defalias 'gnus-batch-kill 'gnus-batch-score)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
207 (autoload 'gnus-batch-score "gnus" "\
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 Run batched scoring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 Newsgroups is a list of strings in Bnews format. If you want to score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 the comp hierarchy, you'd say \"comp.all\". If you would not like to
78
c7528f8e288d Import from CVS: tag r20-0b34
cvs
parents: 70
diff changeset
212 score the alt hierarchy, you'd say \"!alt.all\"." t nil))
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
213
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 32
diff changeset
214 ;;;***
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (provide 'gnus-setup)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (run-hooks 'gnus-setup-load-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 ;;; gnus-setup.el ends here