Remove "tiny change". Delete trailing whitespace.
[gnus] / lisp / nnspool.el
1 ;;; nnspool.el --- spool access for GNU Emacs
2
3 ;; Copyright (C) 1988, 1989, 1990, 1993, 1994, 1995, 1996, 1997, 1998,
4 ;;   2000, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5
6 ;; Author: Masanobu UMEDA <umerin@flab.flab.fujitsu.junet>
7 ;;      Lars Magne Ingebrigtsen <larsi@gnus.org>
8 ;; Keywords: news
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
26
27 ;;; Commentary:
28
29 ;;; Code:
30
31 (require 'nnheader)
32 (require 'nntp)
33 (require 'nnoo)
34 (eval-when-compile (require 'cl))
35
36 (nnoo-declare nnspool)
37
38 (defvoo nnspool-inews-program news-inews-program
39   "Program to post news.
40 This is most commonly `inews' or `injnews'.")
41
42 (defvoo nnspool-inews-switches '("-h" "-S")
43   "Switches for nnspool-request-post to pass to `inews' for posting news.
44 If you are using Cnews, you probably should set this variable to nil.")
45
46 (defvoo nnspool-spool-directory
47     (file-name-as-directory (if (boundp 'news-directory)
48                                 (symbol-value 'news-directory)
49                               news-path))
50   "Local news spool directory.")
51
52 (defvoo nnspool-nov-directory (concat nnspool-spool-directory "over.view/")
53   "Local news nov directory.")
54
55 (defvoo nnspool-lib-dir
56     (if (file-exists-p "/usr/lib/news/active")
57         "/usr/lib/news/"
58       "/var/lib/news/")
59   "Where the local news library files are stored.")
60
61 (defvoo nnspool-active-file (concat nnspool-lib-dir "active")
62   "Local news active file.")
63
64 (defvoo nnspool-newsgroups-file (concat nnspool-lib-dir "newsgroups")
65   "Local news newsgroups file.")
66
67 (defvoo nnspool-distributions-file (concat nnspool-lib-dir "distribs.pat")
68   "Local news distributions file.")
69
70 (defvoo nnspool-history-file (concat nnspool-lib-dir "history")
71   "Local news history file.")
72
73 (defvoo nnspool-active-times-file (concat nnspool-lib-dir "active.times")
74   "Local news active date file.")
75
76 (defvoo nnspool-large-newsgroup 50
77   "The number of articles which indicates a large newsgroup.
78 If the number of articles is greater than the value, verbose
79 messages will be shown to indicate the current status.")
80
81 (defvoo nnspool-nov-is-evil nil
82   "Non-nil means that nnspool will never return NOV lines instead of headers.")
83
84 (defconst nnspool-sift-nov-with-sed nil
85   "If non-nil, use sed to get the relevant portion from the overview file.
86 If nil, nnspool will load the entire file into a buffer and process it
87 there.")
88
89 (defvoo nnspool-rejected-article-hook nil
90   "*A hook that will be run when an article has been rejected by the server.")
91 </