blob: cef314cbceaaa1b59ddadb14051bf3f7df99a28e (
plain)
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
|
<html>
<head>
<title>From Headers [<TMPL_VAR NAME="SITE_NAME">]</title>
<META HTTP-EQUIV="Expires" CONTENT="<TMPL_VAR NAME="EXPIRES">">
<link href="echolot.css" rel="stylesheet" type="text/css">
<!-- $Id: fromlinesindex.html,v 1.3 2003/02/21 06:09:39 weasel Exp $ -->
</head>
<body>
<h1>From Headers [<TMPL_VAR NAME="SITE_NAME">]</h1>
<p>
<a href="./">Up</a>
<h2>Default From: Headers</h2>
<p>
The default From headers of all remailers when sending e-mail. Middleman
remaielers are also listed here with the tag <em>Middleman</em> for your
convenience.
<p>
<table border=1>
<tr><tr><th>nick</th><th>From Line</th><th>type</th></tr>
<TMPL_LOOP NAME="default">
<TMPL_LOOP NAME="data">
<tr>
<td><TMPL_VAR NAME="nick"></td>
<td><TMPL_VAR NAME="from"></td>
<td><small><TMPL_VAR NAME="types"></small></td>
</tr>
</TMPL_LOOP>
</TMPL_LOOP>
</table>
<h2>User Supplied From: Headers</h2>
<p>
If messages sent with a user supplied From header differ from those
without, the remailer is listed here. The difference can either
be an additional disclaimer, really allowing (partial) From headers,
etc.
<p>
<table border=1>
<tr><tr><th>nick</th><th>From Line</th><th>type</th></tr>
<TMPL_LOOP NAME="usersupplied">
<TMPL_LOOP NAME="data">
<tr>
<td><TMPL_VAR NAME="nick"></td>
<td><TMPL_VAR NAME="from"></td>
<td><small><TMPL_VAR NAME="types"></small></td>
</tr>
</TMPL_LOOP>
</TMPL_LOOP>
</table>
<hr>
Created by <a href="http://www.palfrader.org/echolot/">Echolot <TMPL_VAR NAME="version"></a>.<br>
Last update: <TMPL_VAR NAME="CURRENT_TIMESTAMP">.
</body>
<!-- vim:set ts=2: -->
<!-- vim:set shiftwidth=2: -->
</html>
|