This file is indexed.

/usr/share/emacs/site-lisp/wl/elmo/elmo-database.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
;;; elmo-database.el --- Database module for ELMO.

;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>

;; Author: 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-vars)

(defvar elmo-database-msgid nil)
(defvar elmo-database-msgid-filename "msgid")

(defun elmo-database-get (dbsym dbname)
  (if (not (and (symbol-value dbsym)
		(database-live-p (symbol-value dbsym))))
      (set dbsym (open-database (expand-file-name
				 dbname
				 elmo-msgdb-directory
				 )))
    (symbol-value dbsym)))

(defun elmo-database-close ()
  (and elmo-database-msgid
       (database-live-p elmo-database-msgid)
       (close-database elmo-database-msgid)))

(defun elmo-database-msgid-put (msgid folder number)
  (let ((db (elmo-database-get 'elmo-database-msgid
			       elmo-database-msgid-filename))
	print-length)
    (and msgid db
	 (progn
	   (remove-database msgid db)
	   (put-database msgid (prin1-to-string
				(list folder number)) db)))))

(defun elmo-database-msgid-delete (msgid)
  (remove-database msgid (elmo-database-get
			  'elmo-database-msgid
			  elmo-database-msgid-filename)))

(defun elmo-database-msgid-get (msgid)
  (let ((match (get-database msgid (elmo-database-get
				    'elmo-database-msgid
				    elmo-database-msgid-filename))))
    (and match (read match))))

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

;;; elmo-database.el ends here