This file is indexed.

/usr/share/doc/im/html/IM::Folder.html is in im 1:153-2.

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
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>

<body>



<ul id="index">
  <li><a href="#NAME">NAME</a></li>
  <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
  <li><a href="#DESCRIPTION">DESCRIPTION</a></li>
  <li><a href="#EXAMPLES">EXAMPLES</a></li>
  <li><a href="#COPYRIGHT">COPYRIGHT</a></li>
</ul>

<h1 id="NAME">NAME</h1>

<p>IM::Folder - mail/news folder handler</p>

<h1 id="SYNOPSIS">SYNOPSIS</h1>

<pre><code> use IM::Folder;

 $current_folder_name = &amp;cur_folder();

 &amp;set_cur_folder($new_current_folder_name);

 ($number_of_files,
  $number_of_message_files,
  $minimum_message_number,
  $maximum_message_number) = &amp;folder_info($folder_name);

 $message_number = &amp;message_number($message_number_or_name);

 @message_number_array = &amp;message_range($message_range_string);

 $message_file_path = &amp;message_name($folder_name, $message_number);</code></pre>

<h1 id="DESCRIPTION">DESCRIPTION</h1>

<p>The <i>IM::Folder</i> module handles mail/news message folders.</p>

<p>This modules is provided by IM (Internet Message).</p>

<h1 id="EXAMPLES">EXAMPLES</h1>

<pre><code> &amp;cur_folder();
     results &quot;+inbox&quot;

 &amp;set_cur_folder(&quot;+inbox&quot;);

 ($a, $b, $c, $d) = &amp;folder_info(&quot;+inbox&quot;);
     results (10, 3, 1, 3)

 &amp;message_number(&quot;+inbox&quot;, &quot;cur&quot;);
     results 3

 &amp;message_range(&quot;+inbox&quot;, &quot;1-3&quot;);
     results (1, 2, 3)

 &amp;message_name(&quot;+inbox&quot;, &quot;3&quot;);
     results &quot;/usr/home/itojun/Mail/inbox/3&quot;</code></pre>

<h1 id="COPYRIGHT">COPYRIGHT</h1>

<p>IM (Internet Message) is copyrighted by IM developing team. You can redistribute it and/or modify it under the modified BSD license. See the copyright file for more details.</p>


</body>

</html>