mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-08 22:07:55 +00:00
e3416c090e
Also update success_submission.html a little.
64 lines
1.7 KiB
HTML
64 lines
1.7 KiB
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<h3>{% trans "How we are learning about new hosts" %}</h3>
|
|
<ol>
|
|
<li>{% trans "Pulling from external sources:" %}
|
|
<ul>
|
|
{% for source in sources_list %}
|
|
<li>{{ source.url }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
<li>{% trans "Adding through our service." %}
|
|
</li>
|
|
</ol>
|
|
|
|
{% blocktrans %}
|
|
<h3>Publishing requirements</h3>
|
|
To get published a host must meet the following criteria:
|
|
<ul>
|
|
<li>Must have been added at least 3 days ago</li>
|
|
<li>Must be up</li>
|
|
<li>Must be approved by admin</li>
|
|
</ul>
|
|
<p style="notice">Admin's approval isn't really necessary, it is only needed in
|
|
order to eliminate possible hijacking and mass registration attempts.
|
|
</p>
|
|
{% endblocktrans %}
|
|
|
|
{% blocktrans %}
|
|
<h3>Expiration</h3>
|
|
<p>
|
|
Hosts gets checked for availability every 12 hours. If the host is alive, registration period
|
|
prolongated 1 month. Until this period ends, hosts are published in our hosts.txt.
|
|
</p>
|
|
<p>
|
|
When a host has expired, its name/key pair will be keept for 2 years but will not be
|
|
published any longer. Until this period ends, it's impossible to register this hostname
|
|
again.
|
|
</p>
|
|
{% endblocktrans %}
|
|
|
|
{% blocktrans %}
|
|
<h3>Deletion of expired hosts</h3>
|
|
<p>
|
|
Hosts expired 2 years ago get completely deleted from our database and become
|
|
available for a new registration.
|
|
</p>
|
|
{% endblocktrans %}
|
|
|
|
{% blocktrans %}
|
|
<h3>Deletion of dead hosts</h3>
|
|
<p>
|
|
If a host was added from an external source and we've never seen it alive, it
|
|
will be deleted after 1 year since its adding date, and after 14 days if it is
|
|
was added through our registration service. Since these hosts were not published
|
|
through our service, we only grant them such a short grace period.
|
|
</p>
|
|
{% endblocktrans %}
|
|
|
|
{% endblock %}
|
|
|