Add 2010 to copyright years.
[bpt/emacs.git] / lisp / gnus / gnus-setup.el
CommitLineData
23f87bed 1;;; gnus-setup.el --- Initialization & Setup for Gnus 5
16409b0b 2
e84b4b86 3;; Copyright (C) 1995, 1996, 2000, 2001, 2002, 2003, 2004,
114f9c96 4;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
eec82323
LMI
5
6;; Author: Steven L. Baur <steve@miranova.com>
7;; Keywords: news
8
9;; This file is part of GNU Emacs.
10
5e809f55 11;; GNU Emacs is free software: you can redistribute it and/or modify
eec82323 12;; it under the terms of the GNU General Public License as published by
5e809f55
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
eec82323
LMI
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
5e809f55 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
eec82323
LMI
23
24;;; Commentary:
25;; My head is starting to spin with all the different mail/news packages.
26;; Stop The Madness!
27
28;; Given that Emacs Lisp byte codes may be diverging, it is probably best
29;; not to byte compile this, and just arrange to have the .el loaded out
30;; of .emacs.
31
32;;; Code:
33
349f4e97 34(eval-when-compile (require 'cl))
eec82323 35
eec82323 36(defvar gnus-use-installed-gnus t
c41798d3 37 "*If non-nil use installed version of Gnus.")
eec82323 38
56de5565 39(defvar gnus-use-installed-mailcrypt (featurep 'xemacs)
eec82323
LMI
40 "*If non-nil use installed version of mailcrypt.")
41
56de5565 42(defvar gnus-emacs-lisp-directory (if (featurep 'xemacs)
eec82323
LMI
43 "/usr/local/lib/xemacs/"
44 "/usr/local/share/emacs/")
45 "Directory where Emacs site lisp is located.")
46
47(defvar gnus-gnus-lisp-directory (concat gnus-emacs-lisp-directory
56de5565 48 "gnus/lisp/")
eec82323
LMI
49 "Directory where Gnus Emacs lisp is found.")
50
eec82323 51(defvar gnus-mailcrypt-lisp-directory (concat gnus-emacs-lisp-directory
56de5565 52 "site-lisp/mailcrypt/")
eec82323
LMI
53 "Directory where Mailcrypt Emacs Lisp is found.")
54
55(defvar gnus-bbdb-lisp-directory (concat gnus-emacs-lisp-directory
56de5565 56 "site-lisp/bbdb/")
eec82323
LMI
57 "Directory where Big Brother Database is found.")
58
eec82323 59(defvar gnus-use-mhe nil
16409b0b 60 "Set this if you want to use MH-E for mail reading.")
eec82323 61(defvar gnus-use-rmail nil
16409b0b 62 "Set this if you want to use RMAIL for mail reading.")
eec82323 63(defvar gnus-use-sendmail t
16409b0b 64 "Set this if you want to use SENDMAIL for mail reading.")
eec82323 65(defvar gnus-use-vm nil
16409b0b 66 "Set this if you want to use the VM package for mail reading.")
eec82323 67(defvar gnus-use-sc nil
16409b0b 68 "Set this if you want to use Supercite.")
eec82323 69(defvar gnus-use-mailcrypt t
16409b0b 70 "Set this if you want to use Mailcrypt for dealing with PGP messages.")
eec82323 71(defvar gnus-use-bbdb nil
16409b0b 72 "Set this if you want to use the Big Brother DataBase.")
eec82323
LMI
73
74(when (and (not gnus-use-installed-gnus)
75 (null (member gnus-gnus-lisp-directory load-path)))
76 (push gnus-gnus-lisp-directory load-path))
77
78;;; We can't do this until we know where Gnus is.
79(require 'message)
80
eec82323
LMI
81;;; Mailcrypt by
82;;; Jin Choi <jin@atype.com>
83;;; Patrick LoPresti <patl@lcs.mit.edu>
84
85(when gnus-use-mailcrypt
86 (when (and (not gnus-use-installed-mailcrypt)
87 (null (member gnus-mailcrypt-lisp-directory load-path)))
88 (setq load-path (cons gnus-mailcrypt-lisp-directory load-path)))
89 (autoload 'mc-install-write-mode "mailcrypt" nil t)
90 (autoload 'mc-install-read-mode "mailcrypt" nil t)
23f87bed
MB
91;;; (add-hook 'message-mode-hook 'mc-install-write-mode)
92;;; (add-hook 'gnus-summary-mode-hook 'mc-install-read-mode)
eec82323
LMI
93 (when gnus-use-mhe
94 (add-hook 'mh-folder-mode-hook 'mc-install-read-mode)
95 (add-hook 'mh-letter-mode-hook 'mc-install-write-mode)))
96
97;;; BBDB by
98;;; Jamie Zawinski <jwz@lucid.com>
99
100(when gnus-use-bbdb
101 ;; bbdb will never be installed with emacs.
102 (when (null (member gnus-bbdb-lisp-directory load-path))
103 (setq load-path (cons gnus-bbdb-lisp-directory load-path)))
104 (autoload 'bbdb "bbdb-com"
105 "Insidious Big Brother Database" t)
106 (autoload 'bbdb-name "bbdb-com"
107 "Insidious Big Brother Database" t)
108 (autoload 'bbdb-company "bbdb-com"
109 "Insidious Big Brother Database" t)
110 (autoload 'bbdb-net "bbdb-com"
111 "Insidious Big Brother Database" t)
112 (autoload 'bbdb-notes "bbdb-com"
113 "Insidious Big Brother Database" t)
114
115 (when gnus-use-vm
116 (autoload 'bbdb-insinuate-vm "bbdb-vm"
117 "Hook BBDB into VM" t))
118
119 (when gnus-use-rmail
120 (autoload 'bbdb-insinuate-rmail "bbdb-rmail"
121 "Hook BBDB into RMAIL" t)
122 (add-hook 'rmail-mode-hook 'bbdb-insinuate-rmail))
123
124 (when gnus-use-mhe
125 (autoload 'bbdb-insinuate-mh "bbdb-mh"
126 "Hook BBDB into MH-E" t)
127 (add-hook 'mh-folder-mode-hook 'bbdb-insinuate-mh))
128
129 (autoload 'bbdb-insinuate-gnus "bbdb-gnus"
130 "Hook BBDB into Gnus" t)
131 (add-hook 'gnus-startup-hook 'bbdb-insinuate-gnus)
132
133 (when gnus-use-sendmail
134 (autoload 'bbdb-insinuate-sendmail "bbdb"
135 "Insidious Big Brother Database" t)
136 (add-hook 'mail-setup-hook 'bbdb-insinuate-sendmail)
137 (add-hook 'message-setup-hook 'bbdb-insinuate-sendmail)))
138
139(when gnus-use-sc
140 (add-hook 'mail-citation-hook 'sc-cite-original)
01c52d31 141 (setq message-cite-function 'sc-cite-original))
eec82323
LMI
142\f
143;;;### (autoloads (gnus gnus-slave gnus-no-server) "gnus" "lisp/gnus.el" (12473 2137))
144;;; Generated autoloads from lisp/gnus.el
145
146;; Don't redo this if autoloads already exist
147(unless (fboundp 'gnus)
148 (autoload 'gnus-slave-no-server "gnus" "\
149Read network news as a slave without connecting to local server." t nil)
150
151 (autoload 'gnus-no-server "gnus" "\
152Read network news.
153If ARG is a positive number, Gnus will use that as the
154startup level. If ARG is nil, Gnus will be started at level 2.
155If ARG is non-nil and not a positive number, Gnus will
156prompt the user for the name of an NNTP server to use.
157As opposed to `gnus', this command will not connect to the local server." t nil)
158
159 (autoload 'gnus-slave "gnus" "\
160Read news as a slave." t nil)
161
162 (autoload 'gnus "gnus" "\
163Read network news.
164If ARG is non-nil and a positive number, Gnus will use that as the
165startup level. If ARG is non-nil and not a positive number, Gnus will
166prompt the user for the name of an NNTP server to use." t nil)
167
168;;;***
169
170;;; These have moved out of gnus.el into other files.
171;;; FIX FIX FIX: should other things be in gnus-setup? or these not in it?
172 (autoload 'gnus-update-format "gnus-spec" "\
173Update the format specification near point." t nil)
174
175 (autoload 'gnus-fetch-group "gnus-group" "\
176Start Gnus if necessary and enter GROUP.
177Returns whether the fetching was successful or not." t nil)
178
179 (defalias 'gnus-batch-kill 'gnus-batch-score)
180
181 (autoload 'gnus-batch-score "gnus-kill" "\
182Run batched scoring.
183Usage: emacs -batch -l gnus -f gnus-batch-score <newsgroups> ...
184Newsgroups is a list of strings in Bnews format. If you want to score
185the comp hierarchy, you'd say \"comp.all\". If you would not like to
186score the alt hierarchy, you'd say \"!alt.all\"." t nil))
187
188(provide 'gnus-setup)
189
190(run-hooks 'gnus-setup-load-hook)
191
cbee283d 192;; arch-tag: 08e4af93-8565-46bf-905c-36229400609d
eec82323 193;;; gnus-setup.el ends here