/etc/ezmlm-browse/html/configure-form.html is in ezmlm-browse 0.10-3.
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 | <form method=get>
<input type=hidden name=list value="%(list)s">
<input type=hidden name=cmd value=configure>
<table class=config>
<tr>
<td class=config-label>Lines per page:</td>
<td class=config-value><input size=3 name=_perpage value=%(perpage)s></td>
</tr>
<tr>
<td class=config-label>Messages per page:</td>
<td class=config-value><input size=3 name=_msgsperpage value=%(msgsperpage)s></td>
</tr>
<tr>
<td class=config-label>Style:</td>
<td class=config-value>%(selectlist("_style", config.styles, style))s</td>
</tr>
<tr>
<td class=config-label>Word wrapping width</td>
<td class=config-value><input size=3 name=_wrapwidth value=%(wrapwidth)s></td>
<td>Set to "0" to disable word wrapping.</td>
</tr>
<tr>
<td class=config-label>Timezone:</td>
<td class=config-value>%(selectlist("_tz", timezones, tz))s</td>
</tr>
<tr>
<td class=config-label>Preferred time format:</td>
<td class=config-value>%(selectlist("_format_time", [
("None", "Do not convert time"),
("%c", "Server default"),
("%a, %d %b %Y %H:%M:%S", "Sun, 20 Jun 2003 23:21:36"),
("%a %b %d %H:%M:%S %Y", "Sun Jun 20 23:21:05 1993"),
("%Y-%m-%d %H:%M:%S", "1993-06-20 23:21:05"),
], format_time))s</td>
</tr>
<tr>
<td class=config-label>View multipart messages as:</td>
<td class=config-value>%(selectlist("_alt_part", [
('text/plain', 'Plain Text'),
('text/html', 'HTML'),
], alt_part))s</td>
</tr>
<tr>
<td class=config-label>"by Date" message order</td>
<td class=config-value>%(selectlist("_date_sort", [
('ascending', 'Ascending (oldest to newest)'),
('descending', 'Descending (newest to oldest)'),
], date_sort))s</td>
</table>
<table border=0><tr>
<td><input type=submit name="" value="Save Configuration"></td>
<td><input type=reset value="Reset Values"></td>
</table>
</form>
<p><b>Note:</b> These configuration settings are stored in cookies on
your computer. These cookies are used for no purpose other than local
configuration. No user or browser tracking is done through the cookies,
and no cookie data is stored on this server.</p>
|