This file is indexed.

/usr/share/emacs/site-lisp/wl/elmo/elmo-localnews.el is in wl 2.14.0-12.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
;;; elmo-localnews.el --- Local News Spool Interface for ELMO.

;; Copyright (C) 1998,1999,2000 OKUNISHI Fujikazu <fuji0924@mbox.kyoto-inet.or.jp>
;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>

;; Author:  OKUNISHI Fujikazu <fuji0924@mbox.kyoto-inet.or.jp>
;;	Yuuichi Teranishi <teranisi@gohome.org>
;; Keywords: mail, net news

;; This file is part of ELMO (Elisp Library for Message Orchestration).

;; 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, 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 GNU Emacs; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
;;

;;; Commentary:
;;

;;; Code:
;;
(require 'elmo-localdir)

(defcustom elmo-localnews-folder-path "~/News"
  "*Local news folder path."
  :type 'directory
  :group 'elmo)

(eval-and-compile
  (luna-define-class elmo-localnews-folder (elmo-localdir-folder) (group))
  (luna-define-internal-accessors 'elmo-localnews-folder))

(luna-define-method elmo-folder-initialize :before ((folder
						     elmo-localnews-folder)
						    name)
  (elmo-localnews-folder-set-group-internal folder
					    (elmo-replace-in-string
					     name "/" "\\.")))

(luna-define-method elmo-localdir-folder-path ((folder elmo-localnews-folder))
  elmo-localnews-folder-path)

(luna-define-method elmo-localdir-folder-name ((folder elmo-localnews-folder)
					       name)
  (elmo-replace-in-string name "\\." "/"))

(luna-define-method elmo-folder-expand-msgdb-path ((folder
						    elmo-localnews-folder))
  (expand-file-name
   (elmo-localnews-folder-group-internal folder)
   (expand-file-name
    (symbol-name (elmo-folder-type-internal folder))
    elmo-msgdb-directory)))

(luna-define-method elmo-folder-newsgroups ((folder elmo-localnews-folder))
  (list (elmo-localnews-folder-group-internal folder)))

(require 'product)
(product-provide (provide 'elmo-localnews) (require 'elmo-version))

;;; elmo-localnews.el ends here