boinc/doc/email_lists.php

41 lines
1.3 KiB
PHP
Raw Normal View History

<?php
require_once("docutil.php");
page_head("Email lists");
echo "
The follow email lists are available.
Click to subscribe or post to a list.
";
list_start();
list_item(
"<a href=http://ssl.berkeley.edu/mailman/listinfo/boinc_projects>boinc_projects</a>",
"An email list for people operating BOINC projects. Questions and problems involving BOINC server software. Announcements of upgrades and changes.
Do NOT post questions about BOINC client software here.
");
list_item("<a href=http://ssl.berkeley.edu/mailman/listinfo/boinc_dev>boinc_dev</a>",
"For people developing, debugging or porting the BOINC software.
");
list_item("<a href=http://ssl.berkeley.edu/mailman/listinfo/boinc_loc>boinc_loc</a>",
"For people doing non-English translations
of the BOINC GUI or web interfaces.
");
list_item(
"<a href=http://www.ssl.berkeley.edu/mailman/listinfo/boinc_stats>boinc_stats</a>",
"For people developing web sites showing statistics for BOINC projects."
);
list_item("<a href=http://ssl.berkeley.edu/mailman/listinfo/boinc_cvs>boinc_cvs</a>",
"Summaries of BOINC CVS checkins are posted to this list.
No other posts, please."
);
list_item("<a href=http://www.ssl.berkeley.edu/mailman/listinfo/boinc_opt>boinc_opt</a>",
"For people porting and optimizing BOINC applications."
);
list_end();
page_tail();
?>