blob: cc0b1bdceebb705cc3b6e334f7f306623aaeff9f (
plain) (
blame)
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
|
<?php
// Get lists
$lists = scandir("/var/spool/mlmmj/");
$lists = array_diff($lists, array(".", ".."));
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="/style.css">
<title>ARFNET Lists</title>
</head>
<body>
<header><a href="https://arf20.com/">
<img src="arfnet_logo.png" width="64"><span class="title"><strong>ARFNET</strong></span>
</a></header>
<hr>
<main>
<div class="row">
<div class="col8">
<h2 class="center">ARFNET Mailing Lists</h2>
<ul>
<?php
foreach ($lists as $list) {
echo "<li>".$list." <a href=\"subscribe.php?list=".$list."\">subscribe</a> <a href=\"/archive/".$list."\">archive</a></li>\n";
}
?>
</ul>
</div>
</div>
</main>
</body>
</html>
|