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
|
<?php
require "menu.inc";
displayHeader("Mailing Lists");
?>
<TR><TD>
<p>
There are two mailing lists related to Snowball:
</p><p>
<a href="http://lists.tartarus.org/mailman/listinfo/snowball-discuss/">Snowball-discuss</a>
is a list for general discussion of anything Snowball related. Release
announcements will also be posted to this list.
<br>
<a href="http://www.snowball.tartarus.org/archives/snowball-discuss/">Archives</A>
</p><p>
<a href="http://lists.tartarus.org/mailman/listinfo/snowball-commits">Snowball-commits</a>
is a readonly list. Whenever a change is made to Snowball, a message will
automatically be sent to this list: it is therefore fairly high volume, and
only of interest to people actively working on Snowball.
<br>
<a href="http://www.snowball.tartarus.org/archives/snowball-commits/">Archives</A>
</p><p>
(You can subscribe to the lists by following the appropriate links above.)
</p>
</TD></TR>
<?php displayFooter(); ?>
|