This file is indexed.

/usr/share/doc/jed-common/html/jed018.html is in jed-common 1:0.99.19-7.

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
<!DOCTYPE html>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<meta name="generator" content="hevea 2.28">
<link rel="stylesheet" type="text/css" href="jed.css">
<title>Mail</title>
</head>
<body >
<a href="jed017.html"><img src="previous_motif.gif" alt="Previous"></a>
<a href="index.html"><img src="contents_motif.gif" alt="Up"></a>
<a href="jed019.html"><img src="next_motif.gif" alt="Next"></a>
<hr>
<h2 id="sec35" class="section">17&#XA0;&#XA0;Mail</h2>
<p>This section applies to Unix and VMS systems only. On these systems, it
is possible to compose and send mail directly using <span style="font-weight:bold">jed</span>. This assumes
that the Unix system has <code>/usr/ucb/mail</code>. It is trivial to modify
<code>mail.sl</code> to support another Unix mailer. For VMS, <span style="font-weight:bold">jed</span> uses the
callable mail interface present on VMS versions 5.0 and later.</p><p>The default binding for the mail is <span style="font-variant:small-caps">Ctrl-X m</span>. Alternatively, one
may press <span style="font-variant:small-caps">Esc X</span> and enter <code>mail</code> at the <span style="font-family:monospace">M-x</span> prompt.
The mail function will cause a window to open with a buffer called
<code>*mail*</code> which contains the three lines:
</p><pre class="verbatim">      To: 
      Subject: 
      ---text follows this line---
</pre><p>Simply enter the email address of the person that you want to send the
mail to on the line containing <span style="font-family:monospace">To:</span> and put the subject of the
message on the next line labeled <span style="font-family:monospace">Subject:</span>. The text that you wish
to mail follows the line labeled <span style="font-family:monospace">---text follows this line---</span> which
is used by <span style="font-weight:bold">jed</span> as a marker. After you have composed the mail message,
press <span style="font-variant:small-caps">Esc X</span> and enter <code>send</code> at the <code>M-x</code> prompt. For
example, the following is an email requesting to be put on the <span style="font-weight:bold">jed</span> mailing
list:</p><pre class="verbatim">      To: davis@space.mit.edu
      Subject: jed mailing list
      ---text follows this line---
      Hi,
      
         Please add me to the JED mailing list so that I may be notified
      of upcoming releases of JED.

      --Maria
</pre><p>For VMS systems, the above example will probably fail because an internet
address has been used for the example. For systems using a TCP/IP
package, it may be necessary to change <span style="font-family:monospace">davis@space.mit.edu</span> to
something
like <span style="font-family:monospace">smtp%"davis@space.mit.edu"</span>.</p><p>The mail function looks for a user defined hook called <code>mail_hook</code> and
execute it if it exists. This hook may be used to bind certain keys in
the keymap associated with the <code>*mail*</code> buffer. For example,</p><pre class="verbatim">      define mail_hook ()
      {
        local_unsetkey ("^C");
        local_setkey ("send", "^C^C");
      }
</pre><p>defines the key <span style="font-variant:small-caps">Ctrl-C Ctrl-C</span> in the mail keymap to perform the
<code>send</code> function. Other possibilities include binding a key sequence,
say <span style="font-variant:small-caps">Ctrl-C Ctrl-W</span>, to a function that inserts the contents of a
signature file.</p>
<hr>
<a href="jed017.html"><img src="previous_motif.gif" alt="Previous"></a>
<a href="index.html"><img src="contents_motif.gif" alt="Up"></a>
<a href="jed019.html"><img src="next_motif.gif" alt="Next"></a>
</body>
</html>