This file is indexed.

/usr/share/emacs/site-lisp/wl/elmo/elmo-null.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
;;; elmo-null.el --- /dev/null Folder Interface for ELMO.

;; Copyright (C) 2005 Yuuichi Teranishi <teranisi@gohome.org>

;; Author: Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
;; 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)

(eval-and-compile
  (luna-define-class elmo-null-folder (elmo-folder)))

(luna-define-method elmo-folder-initialize ((folder elmo-null-folder) name)
  folder)

(luna-define-method elmo-folder-expand-msgdb-path ((folder elmo-null-folder))
  (expand-file-name "null" (expand-file-name "internal" elmo-msgdb-directory)))

(luna-define-method elmo-folder-open ((folder elmo-null-folder)
				      &optional load-msgdb))

(luna-define-method elmo-folder-commit ((folder elmo-null-folder)))

(luna-define-method elmo-folder-diff ((folder elmo-null-folder))
  '(0 . 0))

(luna-define-method elmo-folder-list-messages ((folder elmo-null-folder)
					       &optional visible-only in-msgdb)
  nil)

(luna-define-method elmo-folder-list-flagged ((folder elmo-null-folder)
					      flag &optional in-msgdb)
  nil)

(luna-define-method elmo-folder-count-flags ((folder elmo-null-folder))
  nil)

(luna-define-method elmo-folder-have-subfolder-p ((folder elmo-null-folder))
  nil)

(luna-define-method elmo-folder-exists-p ((folder elmo-null-folder))
  t)

(luna-define-method elmo-folder-writable-p ((folder elmo-null-folder))
  t)

(luna-define-method elmo-folder-append-messages ((folder elmo-null-folder)
						 src-folder
						 numbers
						 &optional
						 same-number)
  (elmo-progress-notify 'elmo-folder-move-messages (length numbers))
  numbers)

(luna-define-method elmo-folder-synchronize ((folder elmo-null-folder)
					     &optional
					     disable-killed
					     ignore-msgdb
					     no-check
					     mask)
  nil)

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

;;; elmo-null.el.el ends here