-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.php
59 lines (49 loc) · 2.41 KB
/
contact.php
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
<?php
include("IMP.inc");
print_page_header("Contact us");
?>
<div id="contact">
<h2>Mailing lists</h2>
<p>We provide several mailing lists for discussion on using and
developing IMP.</p>
<p>The <a href="//salilab.org/mm/postorius/lists/imp-users.salilab.org/">imp-users</a>
mailing list is provided for <i>users</i> of IMP. It is for discussion of and
help with the use of IMP. Both users and developers are encouraged to subscribe
to the list. Prior postings are also
<a href="//salilab.org/mm/hyperkitty/list/[email protected]/latest">archived</a>
and can be searched.</p>
<p>The <a href="//salilab.org/mm/postorius/lists/imp-dev.salilab.org/">imp-dev</a>
mailing list is provided for <i>developers</i> of IMP. It is for technical
discussion of the development of new features in IMP, such as the design of
new C++ or Python classes. Developers are encouraged to subscribe, but regular
users are encouraged to use the
<a href="//salilab.org/mm/postorius/lists/imp-users.salilab.org/">imp-users</a> list
instead. Prior postings are also
<a href="//salilab.org/mm/hyperkitty/list/[email protected]/latest">archived</a>
and can be searched.</p>
<p>The <a href="//salilab.org/mm/postorius/lists/imp-build.salilab.org/">imp-build</a>
list sends out an email every morning with the results of the nightly builds
of IMP. All developers are encouraged to subscribe to this list, so they can
be notified if they break the build.</p>
<p>The <a href="//salilab.org/mm/postorius/lists/imp-commits.salilab.org/">imp-commits</a>
list sends out an email every time code is changed in the IMP git repository.
It can be a high traffic list, and is only recommended for developers that
want to keep an eye on new developments.
(There are similar
<a href="//salilab.org/mm/postorius/lists/rmf-commits.salilab.org/">RMF-commits</a>
and
<a href="////salilab.org/mm/postorius/lists/pmi-commits.salilab.org/">PMI-commits</a>
lists for <a href="https://integrativemodeling.org/rmf/nightly/doc/">RMF</a>
and <a href="https://integrativemodeling.org/nightly/doc/ref/namespaceIMP_1_1pmi.html">PMI</a>
respectively.)</p>
<h2>Bug reports</h2>
<p>The best way to report a bug in IMP is to use the
<a href="https://github.com/salilab/imp/issues">GitHub issue tracker</a>.
</p>
<h2>Website admin</h2>
<p>To report problems with this website, you can also contact the
<span class="e-mail">imp at salilab.org | IMP website admin</span>.</p>
</div>
<?php
print_page_footer();
?>