summaryrefslogtreecommitdiff
path: root/django/archives/mailarchives/templates/index.html
blob: 5352f36baad07557c24de7f9ec3bd76071eb8456 (plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{%extends "page.html"%}
{%block title%}PostgreSQL Mailing List Archives{%endblock%}
{%load pgfilters%}
{%block contents%}
<h1>PostgreSQL Mailing Lists <i class="far fa-envelope"></i></h1>

<h2>What are the PostgreSQL Mailing Lists?</h2>

The <a href="https://lists.postgresql.org/" target="_blank">PostgreSQL mailing lists</a> are one of the primary ways to interact with the PostgreSQL community. The mailing lists are an effective way to communicate and contribute to PostgreSQL and there are lists that cover a variety of topics, including:

<ul>
  <li>Ongoing PostgreSQL development</li>
  <li>General support</li>
  <li>Product release &amp; event announcements</li>
  <li>Coordinate community outreach</li>
</ul>

and many more.

<h2>Tips For Using the PostgreSQL Mailing Lists</h2>

<p>To help ensure you have a productive experience on the PostgreSQL experience, we have a few tips to get you started on your journey:</p>

<h3>Tip #1: Read The Archives Policy</h3>

<p>The PostgreSQL mailing lists are available in a public archive and are independently syndicated across the web. We want you to feel comfortable posting to our public mailing lists, so please ensure you read our <a
 href="https://www.postgresql.org/about/policies/archives/">Archive Policy</a> prior to your initial post.</p>

<h3>Tip #2: Avoid Mail-Back Anti-Spam Systems</h3>

<p>If your email address is protected by a mail-back anti-spam system, this could cause some issues with our mailing list system. If it is discovered that your email address has implemented one of these systems, we may have to automatically unsubscribe your account.
</p>

<h3>Tip #3: Choose The Most Appropriate List</h3>

<p>Choose the most appropriate individual list for your question.  Please do not cross-post (have multiple mailing lists in one email) unless there is a specific reason (such as a confirmed bug report being cross-posted to the hackers mailing list).  Instead, choose the most appropriate list for your email and send it there.  Cross-posted emails will be moderated and therefore will also take longer to reach the subscribers if approved.
</p>

<h2>How to Subscribe or Unsubscribe</h2>

<h3>Subscribing to a PostgreSQL Mailing List</h3>

<p>
Ready to join the PostgreSQL community? You can subscribe to one of our mailing lists at <a href="https://lists.postgresql.org/" target="_blank">lists.postgresql.org</a>.
</p>

<h3>Unsubscribing from a PostgreSQL Mailing List</h3>

<p>
You can manage your subscriptions and unsubscribe from our mailing lists at <a href="https://lists.postgresql.org/" target="_blank">lists.postgresql.org</a>.
</p>

<h2>Mailing List Archives</h2>

<p>The PostgreSQL Mailing list public archives provide a rich history of the PostgreSQL project, all the way back to 1997! We keep a public record of the mailing list to help provide a searchable resource to help answer your questions, as well as in the spirit of building an open community.</p>

<p>Need a question answered? The archive are fully searchable.  Can't find the answer you are looking for? If it is a general usage question, we recommend subscribing to the <strong>pgsql-general@lists.postgresql.org</strong> mailing list. If it is a more technical question about how PostgreSQL internals work, we recommend subscribing to the <strong>pgsql-hackers@lists.postgresql.org</strong> mailing list.</p>

{%include "searchform.html" %}

<h3>View All Archives</h3>

{%for g in groups%}
  {%if not forloop.first%}
      </tbody>
    </table>
  {%endif%}
  <h5>{{g.groupname}}</h5>
  <table class="table table-striped">
    <thead class="thead-light">
      <tr>
        <th>List</th>
        <th>Description</th>
      </tr>
      <tbody>
        {%for l in g.lists%}
          <tr>
            <th scope="row"><a href="/list/{{l.listname}}/">{{l.maybe_shortdesc}}</a></th>
            <td>{{l.description|safe}}</td>
          </tr>
        {%endfor%}
{%endfor%}
</table>

{%endblock%}