This file is indexed.

/usr/share/doc/wl/README.Debian 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
wl for Debian
------------------

The following setting enables you to run Wanderlust as a default mail
user agent of emacsen.

(if (boundp 'mail-user-agent)
    (setq mail-user-agent 'wl-user-agent))
(if (boundp 'read-mail-command)
    (setq read-mail-command 'wl))

To use the ssl feature, install the gnutls-bin package and the
ca-certificates package.  In the startup file
(/etc/emacs/site-start.d/*wl.el), ssl-program-name is set to
gnutls-cli instead openssl, and ssl-program-arguments is set to verify
certificates.  If you encounter a connection failure, execute gnutls-cli
directly to diagnose.  See also the manual of gnutls-cli.

(setq ssl-program-name "gnutls-cli")
(setq ssl-program-arguments
 '("--port" service
   "--x509cafile" "/etc/ssl/certs/ca-certificates.crt" ;; verify certificates
   host))

For more information, see the Info documents.

 -- Tatsuya Kinoshita <tats@debian.org>, Sun,  6 Jun 2010 18:26:56 +0900