This file is indexed.

/usr/share/doc/ruby-rubymail-doc/html/classes/RMail/Serialize.html is in ruby-rubymail-doc 1.0.0-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
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Class: RMail::Serialize</title>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <link rel=StyleSheet href="../.././rdoc-style.css" type="text/css" media="screen" />
  <script type="text/javascript" language="JavaScript">
  <!--
  function popCode(url) {
    window.open(url, "Code", 
          "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
  }
  //-->
  </script>
</head>

<body bgcolor="white">

<table summary="Information on class" width="100%" border="0" cellspacing="0">
 <tr class="title-row">
 <td class="big-title-font">
   <sup><font color="aqua">Class</font></sup> RMail::Serialize
 </td>
 <td align="right">
   <table summary="layout" cellspacing="0" cellpadding="2">
     <tr valign="top">
      <td class="small-title-font">In:</td>
      <td class="small-title-font">
        <a href="../../files/lib/rmail/serialize_rb.html" class="aqua">
lib/rmail/serialize.rb
         </a>
<br />
      </td>
     </tr>
     <tr>
      <td class="small-title-font">Parent:</td>
      <td class="small-title-font">
Object
      </td>
     </tr>
   </table>
  </td>
  </tr>
</table>
  <!-- banner header -->



<div class="description"><p>
The <a href="Serialize.html">RMail::Serialize</a> class writes an <a
href="Message.html">RMail::Message</a> object into an IO object or string.
The result is a standard mail message in text form.
</p>
<p>
To do this, you pass the <a href="Message.html">RMail::Message</a> object
to the <a href="Serialize.html">RMail::Serialize</a> object. <a
href="Serialize.html">RMail::Serialize</a> can write into any object
supporting the &lt;&lt; method.
</p>
<p>
As a convenience, <a href="Serialize.html">RMail::Serialize</a>.write is a
class method you can use directly:
</p>
<pre>
 # Write to a file
 File.open('my-message', 'w') { |f|
   RMail::Serialize.write(f, message)
 }
</pre>
<p>
# Write to a new string string = <a
href="Serialize.html">RMail::Serialize</a>.write(&#8217;&#8217;, message)
</p>
</div>


<table summary="Methods" cellpadding="5" width="100%">
<tr><td class="tablesubtitle">Methods</td></tr>
</table>
<div class="name-list">
<a href="#M000037">new</a>&nbsp; &nbsp;
<a href="#M000038">serialize</a>&nbsp; &nbsp;
<a href="#M000039">write</a>&nbsp; &nbsp;
</div>





<table summary="Method list" cellpadding="5" width="100%">
<tr><td class="tablesubtitle">Public Class methods</td></tr>
</table>
<table summary="method"  width="100%" cellspacing="0" cellpadding="5" border="0">
<tr><td class="methodtitle">
<a name="M000037"></a>
<a href="Serialize.src/M000037.html" target="Code" class="methodtitle"
 onClick="popCode('Serialize.src/M000037.html');return false;">
<b>new</b>(output, escape_from = nil)
</a>
</td></tr>
</table>
<div class="description">
<p>
Initialize this <a href="Serialize.html">Serialize</a> object with an
output stream. If escape_from is not nil, lines with a leading From are
escaped.
</p>
</div>
<table summary="method"  width="100%" cellspacing="0" cellpadding="5" border="0">
<tr><td class="methodtitle">
<a name="M000039"></a>
<a href="Serialize.src/M000039.html" target="Code" class="methodtitle"
 onClick="popCode('Serialize.src/M000039.html');return false;">
<b>write</b>(output, message)
</a>
</td></tr>
</table>
<div class="description">
<p>
<a href="Serialize.html">Serialize</a> a message into a given output
object. The output object must support the &lt;&lt; method in the same way
that an IO or String object does.
</p>
</div>
<table summary="Method list" cellpadding="5" width="100%">
<tr><td class="tablesubtitle">Public Instance methods</td></tr>
</table>
<table summary="method"  width="100%" cellspacing="0" cellpadding="5" border="0">
<tr><td class="methodtitle">
<a name="M000038"></a>
<a href="Serialize.src/M000038.html" target="Code" class="methodtitle"
 onClick="popCode('Serialize.src/M000038.html');return false;">
<b>serialize</b>(message)
</a>
</td></tr>
</table>
<div class="description">
<p>
<a href="Serialize.html">Serialize</a> a given message into this
object&#8217;s output object.
</p>
</div>

</body>
</html>