2005-08-29 23:06:57 +00:00
|
|
|
<?php
|
|
|
|
require_once("docutil.php");
|
|
|
|
|
2015-05-01 21:02:42 +00:00
|
|
|
page_head("BOINC email lists");
|
2005-08-29 23:06:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
echo "
|
|
|
|
|
|
|
|
The follow email lists are available.
|
|
|
|
Click to subscribe or post to a list.
|
2006-03-06 05:43:12 +00:00
|
|
|
Because of spam problems,
|
|
|
|
you must subscribe to a list in order to post to it.
|
2006-07-12 23:18:57 +00:00
|
|
|
Make sure you post from the same email address
|
|
|
|
under which you subscribed.
|
2005-12-21 21:46:22 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<b><font size=+1 color=#f00000>
|
|
|
|
Note:
|
|
|
|
|
|
|
|
These email lists do not provide tech support
|
|
|
|
for SETI@home or other BOINC projects.
|
|
|
|
Help for SETI@home is available on the
|
|
|
|
<a href=http://setiathome.berkeley.edu/forum_help_desk.php>SETI@home message boards</a>
|
2006-12-11 23:42:54 +00:00
|
|
|
and help for BOINC is available <a href=help.php>here</a>.
|
2005-12-21 21:46:22 +00:00
|
|
|
|
|
|
|
</font></b>
|
2005-08-29 23:06:57 +00:00
|
|
|
";
|
|
|
|
list_start();
|
2008-08-19 21:33:21 +00:00
|
|
|
//list_item(
|
|
|
|
// "<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_announce>boinc_announce</a>",
|
|
|
|
// "Announcements of new versions of BOINC client software."
|
|
|
|
//);
|
2005-08-29 23:06:57 +00:00
|
|
|
list_item(
|
2007-08-10 16:02:09 +00:00
|
|
|
"<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_projects>boinc_projects</a>",
|
2007-06-14 18:02:00 +00:00
|
|
|
"For people developing and operating BOINC projects.
|
|
|
|
Questions and problems involving BOINC API and server software.
|
2006-01-05 06:42:45 +00:00
|
|
|
Announcements of upgrades and changes.
|
2005-08-29 23:06:57 +00:00
|
|
|
");
|
2007-08-10 16:02:09 +00:00
|
|
|
list_item("<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev>boinc_dev</a>",
|
2006-01-05 06:42:45 +00:00
|
|
|
"For people developing, debugging or porting the BOINC software
|
|
|
|
(client, server, and Web).
|
2007-06-14 18:02:00 +00:00
|
|
|
Do NOT post questions about how to use the software.
|
2005-08-29 23:06:57 +00:00
|
|
|
");
|
2007-08-10 16:02:09 +00:00
|
|
|
list_item("<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_loc>boinc_loc</a>",
|
2005-08-29 23:06:57 +00:00
|
|
|
"For people doing non-English translations
|
|
|
|
of the BOINC GUI or web interfaces.
|
|
|
|
");
|
|
|
|
list_item(
|
2007-08-21 20:07:50 +00:00
|
|
|
"<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_stats>boinc_stats</a>",
|
2005-08-29 23:06:57 +00:00
|
|
|
"For people developing web sites showing statistics for BOINC projects."
|
|
|
|
);
|
2007-08-10 16:02:09 +00:00
|
|
|
list_item("<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_cvs>boinc_cvs</a>",
|
2015-05-01 21:02:42 +00:00
|
|
|
"Summaries of changes to the BOINC source code are posted to this list.
|
2005-08-29 23:06:57 +00:00
|
|
|
No other posts, please."
|
|
|
|
);
|
2007-08-21 20:07:50 +00:00
|
|
|
list_item("<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_opt>boinc_opt</a>",
|
2005-08-29 23:06:57 +00:00
|
|
|
"For people porting and optimizing BOINC applications."
|
|
|
|
);
|
2007-08-21 20:07:50 +00:00
|
|
|
list_item("<a href=http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_helpers>boinc_helpers</a>",
|
2006-12-05 03:50:36 +00:00
|
|
|
"For BOINC <a href=help.php>Help Volunteers</a>,
|
|
|
|
to discuss policies and user problems."
|
|
|
|
);
|
2007-11-12 20:57:15 +00:00
|
|
|
list_item("<a href=http://groups.google.com/group/boinc-team-founders>BOINC team founders</a> (Google group)",
|
|
|
|
"Discussion of team-related issues."
|
|
|
|
);
|
2005-08-29 23:06:57 +00:00
|
|
|
list_end();
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
|
|
|
|
?>
|