Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • master
  • not_privacy_only
  • renovate/bootstrap-5.x
  • renovate/corejs-typeahead-1.x
  • renovate/css-loader-6.x
  • renovate/css-loader-7.x
  • renovate/docker.io-library-golang-1.x
  • renovate/glob-10.x
  • renovate/mini-css-extract-plugin-2.x
  • renovate/purgecss-webpack-plugin-6.x
  • revision2023
11 results

Target

Select target project
  • ai/website
  • lafra/website
2 results
Select Git revision
  • bozze
  • buster
  • community
  • master
4 results
Show changes
Commits on Source (294)
Showing
with 192 additions and 931 deletions
Dockerfile
assets
build
node_modules
package-lock.json
.git
......@@ -8,3 +8,8 @@ public
.apache.lock.*
index
data.json
test-httpd.pid
test-httpd.log
node_modules
assets
package-lock.json
image: docker:latest
stages:
- build
- release
include: "https://git.autistici.org/pipelines/containers/raw/master/common.yml"
test:
stage: container-test
image: registry.git.autistici.org/pipelines/images/test/python-chromedriver:master
services:
- docker:dind
- name: "${IMAGE_TAG}"
alias: website
command: ["1"]
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME
RELEASE_TAG: $CI_REGISTRY_IMAGE:latest
GIT_SUBMODULE_STRATEGY: recursive
docker_build:
stage: build
APACHE_PORT: 8080
SITE_URL: "http://website:8080"
TOX_TESTENV_PASSENV: SITE_URL
script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.git.autistici.org
- docker build --build-arg ci_token=$CI_JOB_TOKEN --pull -t $IMAGE_TAG .
- docker push $IMAGE_TAG
- cd render-test
- ulimit -c 0
- tox --skip-pkg-install
artifacts:
when: always
expose_as: 'Screenshots'
paths:
- render-test/screenshots/
release:
stage: release
ctest:
stage: container-test
image: registry.git.autistici.org/pipelines/images/test/float-podman-runner:master
tags: [podman]
script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN registry.git.autistici.org
- docker pull $IMAGE_TAG
- docker tag $IMAGE_TAG $RELEASE_TAG
- docker push $RELEASE_TAG
only:
- master
- with-container $IMAGE_TAG ./container-test.sh
a11y:
stage: container-test
image: registry.gitlab.com/gitlab-org/ci-cd/accessibility:5.3.0-gitlab.3
services:
- name: "${IMAGE_TAG}"
alias: website
variables:
a11y_urls: "http://website:8080"
script: /gitlab-accessibility.sh $a11y_urls
allow_failure: true
artifacts:
when: always
expose_as: 'Accessibility Reports'
paths:
- reports/
reports:
accessibility: reports/gl-accessibility.json
FROM debian:stable AS build
FROM docker.io/library/node:current-bullseye AS assets
ADD . /src
RUN apt-get -q update && env DEBIAN_FRONTEND=noninteractive apt-get -qy install --no-install-recommends rsync git golang ca-certificates && cd /src && ./scripts/lint.sh && ./scripts/update.sh
WORKDIR /src
RUN npm install && env NODE_OPTIONS=--openssl-legacy-provider ./node_modules/.bin/webpack
FROM registry.git.autistici.org/ai3/docker/apache2-base:master
# Debian bullseye can't build gostatic due to its strict dependency
# on Go >1.17, so we build it separately.
FROM docker.io/library/golang:1.21 AS gobuild
RUN go install github.com/piranha/gostatic@latest
RUN go install git.autistici.org/ai/webtools/cmd/jsonsubst@latest
RUN go install git.autistici.org/ai/webtools/cmd/sitesearch@latest
FROM docker.io/library/debian:bookworm-slim AS build
ADD . /src
WORKDIR /src
COPY --from=gobuild /go/bin/gostatic /usr/bin/gostatic
COPY --from=gobuild /go/bin/sitesearch /usr/bin/sitesearch
COPY --from=gobuild /go/bin/jsonsubst /usr/bin/jsonsubst
COPY --from=assets /src/assets/templates/ /src/assets/templates/
RUN ./scripts/lint.sh && ./scripts/update.sh
FROM docker.io/library/debian:bookworm-slim AS precompress
RUN apt-get -q update && env DEBIAN_FRONTEND=noninteractive apt-get -qy install brotli
COPY --from=build /src/public /var/www/autistici.org
COPY --from=build /src/build/bin/sitesearch /usr/sbin/sitesearch
COPY --from=assets /src/assets/static/ /var/www/autistici.org/static/
COPY static/ /var/www/autistici.org/static/
COPY scripts/precompress.sh /precompress.sh
RUN /precompress.sh /var/www/autistici.org
FROM registry.git.autistici.org/ai3/docker/apache2-base:master
COPY --from=gobuild /go/bin/sitesearch /usr/sbin/sitesearch
COPY --from=build /src/index /var/lib/sitesearch/index
COPY templates /var/lib/sitesearch/templates
COPY docker/conf /tmp/conf
COPY --from=assets /src/assets/templates/ /var/lib/sitesearch/templates/
COPY --from=precompress /var/www/autistici.org/ /var/www/autistici.org/
COPY docker/conf/ /etc/
COPY docker/build.sh /tmp/build.sh
RUN /tmp/build.sh && rm /tmp/build.sh
ENTRYPOINT ["/usr/local/bin/chaperone"]
# For testing purposes (8080 is the default port of apache2-base).
EXPOSE 8080/tcp
......@@ -7,10 +7,31 @@ website.
Contents are written in Markdown, and rendered to static HTML at
deployment time.
# Overview
To summarize quickly how the website is structured: it is a
multi-language site, with the page language determined by the source
file extension (.*lang*.md, where *lang* is the two-letter ISO code).
As mentioned, pages are written in plain Markdown. If a page has some
associated content, such as images, the best practice is to save those
images under a new subdirectory of static/img/
* `src/` contains the site sources
* `static/img/` is for images, one subdirectory per associated content
page
The pages are rendered using Bootstrap 5, with some Javascript
functionality to support quick search and autocompletion:
* `ui/templates/` has the HTML templates (one for the documents, and
one for the search page)
* `ui/src/` contains the Javascript code and CSS customizations, which
are then compiled and minified using Webpack
# Making changes
The website contents are located in the `src` subdirectory. Pages are
encoded in Markdown, with a small header providing page metadata
written in Markdown, with a small header providing page metadata
(mostly the page title).
The header is YAML-encoded, and it must be separated from the page
......@@ -27,17 +48,9 @@ there are some setup steps you will need to perform on your system.
## Requirements
To build the website, a few tools will need to be installed:
[gostatic](https://github.com/piranha/gostatic) to generate the HTML
pages, and [sitesearch](https://git.autistici.org/ai/sitesearch) to
generate the search index. The scripts will automatically download and
install these tools if necessary, but you will need a working
[Go](https://golang.org/) development environment. Furthermore,
testing the website requires running a local Apache server.
On a Debian system, you can install all the requirements with:
$ sudo apt-get install rsync golang-go
Docker is required to build the website. Since the result is a
self-contained standalone web server container with no further
dependencies, that makes it pretty easy to test locally too.
## Testing changes for correctness
......@@ -65,57 +78,18 @@ these tests successfully:
Simply run, from the top-level directory:
$ ./scripts/update.sh
$ docker build -t ai-website .
The resulting HTML pages will be found in the `public` directory.
## How to run a test webserver
### Docker
The preferred way, which avoids installing an entire Debian
distribution, would be to use Docker. Build the image with:
$ docker build -t ai-website .
and run it with:
$ docker run -p 8080 --network host ai-website
Once you've built a container image (see *How to build the website*
above), you can just run it locally with:
it should then be visible at http://localhost:8080/.
$ docker run --rm -p 8080:8080 ai-website
### debootstrap
To check the results of your edits, it is useful to start a local
webserver to inspect the generated HTML pages. In general, you
might want to avoid installing the Apache packages on your local
system (especially on Debian where they automatically start
daemons), so we have prepared a way to install Apache in a
chroot. Run the following commands just once to set it up:
$ sudo apt-get install debootstrap
$ sudo ./scripts/install-apache.sh
Then, to start Apache and the search daemon, run (it may ask
you for your password due to the use of *sudo*):
$ sudo ./scripts/run-test-server.sh
This will start a full server stack (web server and search server)
that you can access by browsing to
http://localhost:3300
To stop the Apache process when you're done, run:
$ sudo ./scripts/run-test-server.sh stop
## Updating the FAQ
FAQ pages are currently stored in an old format (compatible with
the *makefaq* tool). Just update them regularly and `update.sh`
will handle them correctly.
the website should then be visible at http://localhost:8080/.
## Embedding external data sources
......@@ -136,5 +110,40 @@ As an example of this technique, you can check out:
* `data.d/dns`
* `src/docs/web/domains.en.md_in`
## How the search functionality works
Even though the contents are hierarchically structured in directories
and subdirectories, the site's presentation has no explicit, navigable
hierarchical structure (because we never found a good way to do
so). This is compensated by relatively fancy search functionality, which:
* works well with multiple languages, having an understanding of the
language the query is made in
* is fast to respond to simple queries thanks to a pre-loaded local
list of page titles
* complements results with a reliable search engine on the server
The website uses
[typeahead.js](https://twitter.github.io/typeahead.js/) to provide
immediate search results as-you-type. The server-side search engine is
*sitesearch*, contained in the
[ai/webtools](https://git.autistici.org/ai/webtools/-/tree/master/cmd/sitesearch)
repository.
## Site build pipeline
In order to build the website, a number of steps are required:
* The static assets that are part of the site *style* are compiled
with Webpack, to generate minimized and minified Javascript and CSS
(removing all the code we're not using). Webpack also modifies the
site templates, to inject the correct links to the generated assets
(which contain a hash, for cache-related reasons).
* The site's HTML pages are built using a minimalistic "static site
generator" ([gostatic](github.com/piranha/gostatic)).
* The original site contents are indexed by the search engine,
generating the search index.
* The static assets and the HTML pages are pre-compressed with both
GZip and Brotli, so that we can serve them quickly without using any
CPU time and with extremely cache-friendly headers.
......@@ -72,7 +72,7 @@ Corrispondenze radio:
<br/>
<li><a href="http://italy.indymedia.org/news/2005/06/817864.php">canzone di solidariet&agrave; sull'aria di Addio Lugano</a></li>
<li><a href="stampa/come_le_cavallette.mp3">canzone di solidariet&agrave; sull'aria di Addio Lugano</a></li>
</ul>
<h3>
......
File added
TEMPLATES = templates
TEMPLATES = assets/templates
SOURCE = src
OUTPUT = public
......
#!/bin/sh
if ! curl -sf -o /dev/null http://localhost:8080 ; then
echo "Could not connect to Apache (8080)"
exit 1
fi
echo "Successfully connected to http://localhost:8080"
exit 0
#!/usr/bin/env python
#
# Genera i dati con le fingerprint dei certificati, in formato JSON.
#
# Per permettere all'ambiente di test locale di funzionare in modo
# decente, lo script puo' prelevare i certificati in remoto (usando
# openssl s_client). Altrimenti in produzione li trova in /etc/ssl-ai.
#
# NOTA: Questo script e' diventato obsoleto da quando usiamo Letsencrypt.
import json
import optparse
import os
import subprocess
import sys
import urllib2
SERVICES = ('web', 'imap', 'smtp', 'irc')
LOCAL_CONFIG = {
'root': '/etc/ssl-ai',
}
REMOTE_CONFIG = {
'services': {
'web': {
'host': 'www.autistici.org',
'port': 443,
},
'imap': {
'host': 'mail.autistici.org',
'port': 995,
},
'smtp': {
'host': 'smtp.autistici.org',
'port': 465,
},
'irc': {
'host': 'irc.autistici.org',
'port': 6697,
},
},
}
class RemoteSource(object):
def __init__(self, config):
self.config = config
def get_certificate(self, name):
target = self.config['services'][name]
cert = subprocess.check_output(
'openssl s_client -connect %s:%s </dev/null 2>/dev/null' % (
(target.get('host', 'autistici.org'), target.get('port', 443))),
shell=True)
return cert
class LocalSource(object):
def __init__(self, config):
self.config = config
def get_certificate(self, name):
with open(os.path.join(self.config['root'], 'certs', name + '.pem')) as fd:
return fd.read()
devnull = open('/dev/null', 'w')
def get_fingerprint(crt, algo):
p = subprocess.Popen([
'openssl', 'x509', '-noout', '-fingerprint', '-' + algo],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=devnull)
output, _ = p.communicate(crt)
return output.strip().split('=')[1]
def get_cn(crt):
p = subprocess.Popen([
'openssl', 'x509', '-noout', '-subject', '-nameopt', 'sep_comma_plus'],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=devnull)
output, _ = p.communicate(crt)
subject = '='.join(output.strip().split('=')[1:])
for s in subject.split(','):
if s.startswith('CN='):
return s[3:]
return None
def get_certs_info(cert_source):
services = {}
for name in SERVICES:
try:
crt = cert_source.get_certificate(name)
except Exception as e:
print 'error fetching certificate for %s: %s' % (name, e)
continue
cn = get_cn(crt)
services[name] = {'cn': cn}
for algo in ('md5', 'sha1'):
fp = get_fingerprint(crt, algo)
services[name][algo] = fp
# Provide a stable order.
return sorted(services.itervalues(), key=lambda x: x['cn'])
def main():
parser = optparse.OptionParser()
parser.add_option('--remote', action='store_true',
help='Retrieve certificate data remotely')
parser.add_option('--cert-root', dest='root',
help='Local root of certificate store, if present')
opts, args = parser.parse_args()
if args:
parser.error('Too many arguments')
if opts.remote:
source = RemoteSource(REMOTE_CONFIG)
elif opts.root:
source = LocalSource(LOCAL_CONFIG)
else:
# Autodetect.
if os.path.exists(LOCAL_CONFIG['root']):
source = LocalSource(LOCAL_CONFIG)
else:
source = RemoteSource(REMOTE_CONFIG)
data = {'services': get_certs_info(source)}
json.dump(data, sys.stdout, indent=4)
print
if __name__ == '__main__':
main()
#!/bin/sh
#
# Elenco dei server DNS pubblici per le registrazioni dei domini degli utenti.
#
cat <<EOF
{
"servers": [
{"name": "ns1.investici.org", "ip": "212.103.72.250"},
{"name": "ns1.investici.org", "ip": "93.190.126.19"},
{"name": "ns2.investici.org", "ip": "198.167.222.108"},
{"name": "ns3.investici.org", "ip": "82.94.249.234"}
]
}
EOF
......@@ -7,13 +7,6 @@
# dedicated packages, so we have split it out to a script
# for legibility.
# Packages that are only used to build the site. These will be
# removed once we're done.
BUILD_PACKAGES="rsync"
# Packages required to serve the website and run the services.
PACKAGES=""
APACHE_MODULES_ENABLE="
headers
rewrite
......@@ -22,33 +15,17 @@ APACHE_MODULES_ENABLE="
proxy_http
"
# The default bitnami/minideb image defines an 'install_packages'
# command which is just a convenient helper. Define our own in
# case we are using some other Debian image.
if [ "x$(which install_packages)" = "x" ]; then
install_packages() {
env DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends "$@"
}
fi
APACHE_MODULES_DISABLE="
deflate
"
set -e
umask 022
install_packages ${BUILD_PACKAGES} ${PACKAGES}
chmod -R go-w /tmp/conf
rsync -a /tmp/conf/ /etc/
# Setup Apache.
a2enmod -q ${APACHE_MODULES_ENABLE}
a2dismod -f -q ${APACHE_MODULES_DISABLE}
# Make sure that files are readable.
chmod -R a+rX /var/lib/sitesearch
chmod -R a+rX /var/www/autistici.org
# Remove packages used for installation.
apt-get remove -y --purge ${BUILD_PACKAGES}
apt-get autoremove -y
apt-get clean
rm -fr /var/lib/apt/lists/*
rm -fr /tmp/conf
......@@ -23,9 +23,18 @@
Header set X-Frame-Options SAMEORIGIN
Header set Strict-Transport-Security "max-age=2592000;"
# Set caching headers for /static/ content.
<Location /static/>
Header set Cache-Control "max-age=31536000"
</Location>
# Configure negotiation.
LanguagePriority en it fr de es pt ca
ForceLanguagePriority Prefer Fallback
RemoveLanguage .br
RemoveType .gz
AddEncoding gzip .gz
AddEncoding br .br
# Search engine.
ProxyPass /search http://127.0.0.1:3301
......@@ -47,8 +56,4 @@
# Rewrite old /pannello/ URLs for those who have it bookmarked.
RewriteRule ^/pannello(|/.*)$ https://accounts.autistici.org/ [R=301,L]
# Maintenance for /u/ URLs
# TODO: remove once all links have been switched to the new locations.
RewriteRule ^/u/(services|helpdesk).* /splash [R=302,L]
</VirtualHost>
search.service: {
command: "/usr/sbin/sitesearch --index=/var/lib/sitesearch/index --templates=/var/lib/sitesearch/templates --http=127.0.0.1:3301",
restart: true,
}
#!/bin/sh
exec /usr/sbin/sitesearch --index=/var/lib/sitesearch/index --templates=/var/lib/sitesearch/templates --http=127.0.0.1:3301
title: Richtlinien um von den A/I-Servern gehostet zu werden
----
Richtlinien um von den A/I-Servern gehostet zu werden
=====================================================
Um unsere Server nutzen zu können, müsst ihr die Prinzipien des **Antifaschismus, Antirassismus, Antisexismus, Antihomophobie, Antitransphobie und Antimilitarismus** teilen.
Eure Projekte müssen genauso **unkommerzieller Natur** sein wie das unsere. Dazu gehört auch ein Verlangen zum Teilen und Austausch von
Beziehungen und Kämpfen, mit all der Geduld, die das auch erfordert ;))))
Jeder Service, den wir auf unseren Servern anbieten, darf keinen kommerziellen, parteipolitischen oder religiösen Aktivitäten dienen, weder
direkt noch indirekt: um es kurz zu fassen, wir hosten niemanden der/die bereits Möglichkeiten und Ressourcen hat, um seine/ihre Ideen und
Inhalte zu verbreiten oder der/die Konzepte der Delegation und Repräsentation in Projekten und alltäglichen Beziehungen nutzt, explizit wie
implizit.
Der Server behält nur die Log-Dateien, die für Debug-Operationen unerlässlich sind. Persönliche Verbindungsdaten werden nicht gespeichert.
Richtlinien für die einzelnen Angebote
--------------------------------------
- [E-Mail (auch Mailinglistem und Newsletter)](#mail)
- [Web Hosting und Blogs](#web)
--------------------------------------------------------------------------------------------------------------------------------------------
### <a name="mail"></a>E-Mail-Richtlinien (auch Mailinglistem und Newsletter zum Thema Spam)
Einen Account auf unserem Server zu eröffnen, bedeutet das Teilen unseres [Manifestes](/who/manifesto) und auch die Kenntnisnahme
des Folgenden:
- **Speicherplatz**: Die Nutzung Eures Accounts wird beschränkt durch die Nutzung aller, die unsere Dienste in Anspruch nehmen. Die
Ressourcen sind knapp, der Dienst ist frei zugänglich und User haben wir viele. Deshalb bitten wir Euch darum, den Bedarf Eures
Speicherplatzes auf unseren Platten zu beschränken, indem möglichst oft die E-Mails von unseren Servern gelöscht werden (z.B. durch den
Download derselben).
- **Nutzung/Nichtbenutzung dieses Dienstes**: Postfächer, die mehr als 365 Tage ungenutzt bleiben, werden deaktiviert. Wenn Ihr bereits
wisst, dass Ihr den Account mehr als 12 Monate nicht nutzen werdet, er aber erhalten bleiben soll, dann [meldet Euch bei
uns](mailto:info@autistici.org).
- **WebMail-Nutzung**: WebMail verbraucht einen großen Teil der Serverkapazität, und sollte deshalb nur im Notfall genutzt werden; für den
alltäglichen Gebrauch empfehlen wir die Nutzung einer E-Mail-Software und den Download der E-Mails auf Eure Computer.
- **Passwort**: Um die Privatsphäre zu schützen, speichern wir nie Daten von jemanden, der/die die Aktivierung eines
E-Mail-Accounts beantragt. Um Eure E-Mail-Adresse zu nutzen werdet Ihr eine einfache Frage auswählen müssen, die es Euch erlaubt, bei
vergessenem oder verlorenem Passwort den Zugang wiederherzustellen. Solltet Ihr auch die Frage und deren Antwort vergessen, werden wir
nicht mehr in der Lage sein, den Zugang zu Eurem Account wiederherzustellen. Das Einzige, was uns dann noch bleibt, ist, Euch einen
neuen E-Mail-Account zur Verfügung zu stellen; die Daten Eures alten Accounts sind jedoch verloren.
In diesem Fall solltet Ihr in Eurem neuen Zugang die "recover question" einstellen, indem Ihr dem entsprechenden Link in Eurem
Account-Kontrollzentrum folgt. Seid auch daran erinnert, dass periodisch das Passwort gewechselt werden sollte: das geht über den Link
"change password" im Kontrollzentrum.
- **Empfang von Spam und Viren**: Der Server nutzt zwar Antivirus- und Antispam-Software, aber wie jeder x-beliebige kommerzielle Host
auch, ist die Effektivität solcher Programme gering. Jeder Nachricht wird ein gewisser Spam-Rang zugewiesen, der verbreiteten
Richtlinien zu Spamming folgt. Wenn der Rang hoch genug ist, wird die Betreffzeile der Nachricht mit dem Wort \*\*\* SPAM
\*\*\* markiert. Ihr werdet dann das E-Mail-Programm entsprechend konfigurieren können, um solche Spam-Nachrichten herauszufiltern. Wir
empfehlen trotzdem, die als Spam markierten Nachrichten zu überprüfen, da Antispam-Filter alles andere als perfekt arbeiten.
- **Versenden von Spam und Viren**: Um zu vermeiden, dass unsere Server in den Blacklists anderer Server auf der halben Welt auftauchen,
wollen wir nicht, dass über unsere E-Mail-Accounts Spam verschickt wird. Jeder Account, der dabei erwischt wird, wird ohne jede
Nachricht darüber sofort deaktiviert.
- **Rechtliche Verantwortlichkeiten**: Wie auch für alles andere, was Ihr tut, müsst Ihr Euch im Klaren sein, dass unsere Server nicht
verantwortlich sind für das, was Ihr schreibt oder über Euch preisgebt. Wir empfehlen daher, [sämtliche verfügbaren
Werkzeuge](/docs/mail/privacymail) zu nutzen, um Euer Recht auf Privatsphäre zu verteidigen.
--------------------------------------------------------------------------------------------------------------------------------------------
### <a name="web"></a>Web Hosting und Blogs
- Die Verantwortlichkeit für den Inhalt von Webseiten liegt bei den Website-Administratoren (webmaster). Das Kollektiv, dass den Server
Autistici-Inventati betreibt, kann nicht für die Inhalte gehosteter Webseiten verantwortlich gemacht werden.
Wir weisen deshalb alle Webmaster darauf hin, unsere Prinzipien zu achten und nur Speicherplatz zu erfragen, wenn unser
[Manifest](/who/manifesto) gelesen und diesem zugestimmt wird.
- Der Speicherplatz für Webseiten wird nur mit dem Einverständnis des Kollektives erteilt. Persönliche Webseiten werden nicht gehostet, es
sei denn, sie veröffentlichen Dokumente allgemeinen Interesses, die mit unserem [Manifest](/who/manifesto) und den Meinungen des
Kollektivs im Einklang stehen.
- Wir erinnern daran, dass der Upload von urheberechtlich geschütztem Material (wie etwa mp3 oder divx) nicht gestattet ist, da der
Vorgang die Existenz unserer Server und aller daran hängenden Dienste stark gefährdet.
- Wenn Ihr an Eurer Seite arbeitet, denkt auch an den Kampf um den freien Austausch von Wissen, den wir kämpfen. Wir hoffen, dass ihr
gegenüber diesen Kämpfen sensibel seid. Also denkt an uns, wenn Ihr am unteren Ende Eurer Seite die kleine, aber bedeutende
"Copyright"-Warnung seht. Das Material, welches auf diesem Server veröffentlicht wird, soll mindestens eine **freie Lizenz** haben
(z.B.: [GPL](http://www.gnu.org) oder [Creative Commons](http://www.creativecommons.org)) -- solltet Ihr Euch überhaupt dazu
entscheiden, eine Copyright-Lizenz zu nutzen ;)
- Die Grenzen Eures Webspeicherplatzes werden von den Kapaziäten der Maschine begrenzt. Das soll bedeuten, dass der Platz nicht für
persönliche Daten und sehr große Dateien genutzt wird, soweit es nicht unbedingt notwendig ist. **Generell vertrauen wir auf
Zusammenarbeit und Verantwortung**.
Müsst Ihr **sehr große Dateien** on-line verfügbar haben, dann kontaktiert uns vor dem Upload, um die Verfügbarkeit des Speicherplatzes
zu überprüfen.
- Unsere Server sollen die Privatsphäre und die Anonymität unserer Nutzer\_innen sicherstellen: darum ist es nicht erlaubt, Besucherzähler
oder andere Dienste für Webstatistiken (wie shinystat oder google analytics) auf einer Webseite zu betreiben. Solche Dienste speichern
die IP-Adressen der Nutzer\_innen und vergehen sich damit an einem unserer Hauptprinzipien. Solltet Ihr wirklich wissen wollen, wie
viele Leute Eure Webseite besuchen, nutzt unseren eigenen neuen [Dienst](/services/piwik) für Webstatistik.
- Wenn Ihr an Eurer Webseite arbeitet, denkt daran, dass nicht jede/r Zugang zu den neuesten Technologien hat und dass es auch blinde
Menschen gibt; für unser Kollektiv ist die **Zugänglichkeit** der gehosteten Seiten sehr wichtig.
- In der [Propaganda-Abteilung](/who/propaganda "propaganda") unserer Webseite findet Ihr ein kleines Logo des
autistici.org/inventati.org-Projektes und wir würden uns sehr freuen, wenn die Seiten, die von uns gehostet werden, dieses Logo irgendwo
auf der Homepage darstellen lassen ;))))).
Zudem: solltet Ihr Eure eigene Domain nutzen ([technische Hinweise](/docs/web/domains) lesen), würde die Einbindung eines
kleinen Inventati/Autistici-Logos als kleines, aber wichtiges Zeichen verstanden, dass Ihr unser Projekt teilt und unterstützt.
- **Es ist nicht erlaubt, den zugeteilten Platz als eine Umleitung (re-direct) für andere Webseiten zu nutzen**, da wir das als nutzlose
Verschwendung unserer Ressourcen betrachten.
- Server-Speicherplatz, der mehr als 90 Tage nach der Aktivierung ungenutzt bleibt, wird deaktiviert und gelöscht (aus den gleichen
Gründen wie oben).
- Wenn die Nutzung der mysql-Datenbank beantragt wurde, geschieht die Wartung Eurer Datenbank über das Web-Interface.
ES IST NICHT NOTWENDIG irgendwelche Software wie phpadmin oder ähnliche Web-Interfaces zu installieren, um Euren MySQL-Account zu
verwalten, da wir das bereits installiert haben und uns gut darum kümmern.
- - -
Solltet Ihr weitere Fragen oder Zweifel haben, schaut in unsere [FAQ](/docs/faq/) oder [kontaktiert uns!](mailto:info@autistici.org)
title: Policy
----
Policy
======
To be hosted on our servers you have to share our principles of **anti-fascism,
anti-racism, anti-sexism, anti-homophobia, anti-transphobia, and
anti-militarism**. Your projects must as well be based on the same
**non-commercial nature** which keep our project alive, and on the desire to
share and experience relationships and struggles, with all the patience it
requires ;))))
Any service provided on our servers cannot be destined to (directly or
indirectly) commercial or religious activities, nor to political parties: to
make a long story short, we do not host anyone who already has means and
resources to spread widely his/her own contents and ideas, or who uses the
concept of (explicit or implicit) delegation and representation in its
day-to-day relationships and projects.
The server only keeps the logs that are strictly necessary for debug operations,
and they do not hold any personal data connecting accounts on our servers to
actual identities. To read more about how we respect your data, read [this document](/who/your_data).
Dos and Donts for Specific services:
------------------------------------
- [E-Mail (as well as Mailing lists and Newsletters)](#mail)
- [Web Hosting and Blogs](#web)
----------------------------------------------------------------------------------------------------------
### E-Mail dos and donts (as well as MLs and NLs for the issues concerning spam)
<a name="mail"></a>
To open an account on our server means also to share [our
manifesto](/who/manifesto) and to take note of the following:
- **Space limits on disk:** The use of your account is limited by the respect
owed to everybody who's using our services. Resources are scarce, the service
is free and the users are many. For this reason, we invite you to limit the
use you make of our disk by downloading or deleting your emails as often as
possible.
- **Usage/Non-usage of this service:** Mailboxes which are left unused for over
365 days will be disabled. If you think you won't be using your account for
more than 1 year but would like to keep it active anyway, [write to
us](mailto:info@autistici.org).
- **WebMail usage:** The WebMail needs a lot of the servers' resources, and
should be therefore only used for emergencies; for normal usage you are
invited to use an email client and download your emails on your PC.
- **Password:** For privacy-related reasons, we never keep track of anybody who
requests the activation of an email account. To use your email, you will have
to choose a simple question which will allow you to recover your password in
case you lose/forget it. If you also forget the question or the answer to the
question we won't be able to re-send you the data to access your account
again. The only thing we will be able to do is creating a new mail account for
you, but you won't recover your old stuff. Remember then to set the "recover
question" in your account clicking on the link you will find in your user
panel. Remember as well to periodically change your password: you can do it by
clicking on the "change password" link in the user panel.
- **Receiving Spam and Viruses:** The server uses antivirus and antispam tools,
but as with any other commercial host, they are little effective. Every mail
is awarded a spam rank using some widespread guidelines about spamming. If the
mail rank is high enough it is tagged with the word \*\*\* SPAM \*\*\* in the
Subject line of the mail. You will then be able to configure your mail client
to filter any spam message. We recommend you to check the emails which are
"tagged" as spam, since the anti-spam filter is anything but perfect.
- **Sending Spam and Viruses:** To avoid having our servers included in
blacklists of half the known world, we don't want our email accounts be used
for sending spam. Any account caught doing so will be disabled without further
notice.
- **Legal responsibilities:** As for anything else you do, be aware that our
servers are not responsible for what you write, nor for the safeguard of your
own privacy. We therefore invite you to make the most of all the existing
[tools](/docs/mail/privacymail "protect your privacy") to defend your right to
privacy.
- - -
### Web Hosting and Blogs
<a name="web"></a>
- Responsibility for the content of the sites lies within the sites' webmasters.
The collective which runs the server Autistici-Inventati cannot be held
responsible for the contents of any of the hosted sites. We therefore invite
all webmasters to respect our principles and to request the webspace only
after having read and agreed to our [manifesto](/who/manifesto).
- The webspace will be provided according only to the collective approval.
Personal websites will not be hosted unless they publish documents of
particular interest according to our [manifesto](/who/manifesto) and to the
collective's opinions.
- We remind you not to upload on the site copyright protected materials (like
sometimes mp3 and divx are) that could endanger the existence of our very
servers (and all services connected to it).
- When you work on your site, have a thought about the struggle for free sharing
of knowledge that we are fighting. We hope you'll be sensitive to these
struggles. Think about us when you see the small but significant "copyright"
warning down on the bottom of your page. The material published on this
server will have to be released at least under **a free license** (like for
example: [GPL](http://wwww.gnu.org/), or [Creative
Commons](http://www.creativecommons.org)) -- if you decide to use a copyright
license at all ;)
- The limits to your webspace are limited by the machine's resources. This means
that it's not good to use space for personal data or for big-sized files,
unless it's strictly necessary. **Generally, we confide in collaboration and
responsibility**. **If you do have very big files** to keep online, we invite
you to contact us to verify the disk space availability before you upload.
- Our servers mean to safeguard the privacy and anonymity of its users: it's
therefore not allowed to use counters or other webstat services (like
shinystat or google analytics) on any website page, since they log the IPs of
people visiting the site, completely forsaking one of our main principles. If
you really want to know how many people visit your site, feel free to use our
[web statistics service](/services/piwik "A/I Piwik statistics").
- Doxing (i.e. the publication of other people's personal data) is not allowed
because we cannot possibly establish the good faith with which this
information was published or the consequences for the people who are subject
to doxing, and also because it exposes us to too high legal risks. We have
decided to ban doxing also considering that for this kind of activity there
are many services better than ours (even better if they're hidden services).
- When you work on your site, think about the fact that not everyone has access
to the latest existing technologies and that there are also people who cannot
see; for us **accessibility** of the hosted sites on this server is always
important (see <http://www.ecn.org/xs2web> for further information on the
issue of accessibility).
- In the [propaganda](/who/propaganda "propaganda") page of our site you'll find
a little logo of the autistici.org/inventati.org project, and we'd be very
happy to know that the sites hosted by our servers display it somewhere in
their homepage ;))))). Moreover, in case you are using your own domain (read
[technical notes](/docs/web/domains "Register your own domain")), the
inclusion of a little Inventanti/Autistici-logo on your home page is
considered a little but important sign that you share and support our project.
- **It is not allowed to use the assigned space as a re-direct for other
sites**, as we consider this an unnecessary waste of our resources.
- Server space left unused for more than 90 days from the activation will be
disabled and deleted (for the same reasons as above).
- If the use of mysql has been requested, the maintenance of your own database
happens through the web interface. IT IS NOT NECESSARY to install any
software like phpadmin or similar web interfaces to manage your MySQL account,
because we have already installed them and keep them well tended and cared
for.
- - -
If you have further doubts have a look at our [FAQ](/docs/faq/) or [contact
us](mailto:info@autistici.org)!
- - -
<small>Thanks to [(A)iMoNDi](http://www.videoteppista.nomasters.org/) who
contributed this translation.</a> </small>
title: Política
----
Política
========
Para participar y tener un servicio en nuestra red tienes que compartir nuestros pincipios de **anti-facismo, anti-racismo, anti-sexismo, anti-homofobia, anti-transfobia y anti-militarismo**. Tus proyectos tienen que tener los mismos principios **no comerciales** que mantienen vivo a nuestro proyecto, y tener
la voluntad de compartir experiencias y luchas, con toda la paciencia que ello implica ;))))
Cualquier servicio alojado en nuestros servidores no puede estar destinado (directa o indirectamente) a actividades comerciales, religiones,
partidos políticos -institucionales o no- o, para decirlo rápidamente, por cualquiera que ya tiene medios y recursos para difundir
ampliamente sus ideas, o quienes hacen uso del concepto de representación y delegación (explícita o implícitamente) en sus relaciones y
proyectos del día a día.
El servidor sólo conserva aquellos logs que son estríctamente necesarios para operaciones de depuración, y dichos logs no conservan ningún
tipo de información personal que relacione cuentas con identidades.
Política para servicios específicos
-----------------------------------
- [Correo electrónico (incluyendo listas de correo y newsletters)](#mail)
- [Alojamiento web y blogs](#web)
--------------------------------------------------------------------------------------------------------------------------------------------
### <a name="mail"></a>Correo electrónico (incluyendo listas de correo y newsletters paa las cuestiones relacionados con el spam)
Abrir una cuenta en nuetsros servidores y servicios implica que compartes nuestro [manifesto](/who/manifesto) y que tomas en
consideración lo siguiente:
- **Límites de espacio:** El uso de tu cuenta está limitado por el respeto a todas las peronas que usan nuestros servicios. Los recursos
son escasos, el servicio es gratuito y l\*s usuari\*s much \*s. Por ello, invitamos a que hagan un uso limitado de nuestros
discos, descargando o eliminando los correos tan
seguido como sea posible.
- **Uso/No-uso de este servicio:** Las cuentas de correo que no se hayan usado en 365 días serán desactivadas. Si piensas que no vas a
usar tu cuenta por 12 meses pero aún así quieres conservarla, [escríbenos](mailto:info@autistici.org).
- **Uso de WebMail:** El WebMail consume muchos recursos, por lo que debería ser usado sólo en casos de emergencia; para un uso normal, te
invitamos a usar un cliente de correo y descargarlo en tu PC.
- **Contraseña:** Por cuestiones de privacidad, nunca rastreamos nada de las personas que solicitan la activación de una cuenta. Para usar
tu correo electrónico, tendrás que elegir una simple pregunta que te permitirá recobrar tu contraseña en el caso de que la pierdas
u olvides. Si también pierdes la pregunta, o la respuesta a la pregunta, no seremos capaces de reenviarte la información para que puedas
volver a acceder a tu cuenta. La única cosa que seremos capaces de hacer será abrirte una nueva cuenta, pero no recobraremos tus cosas
viejas.
Entonces, recuerda configurar tu "pregunta de recuperación" en tu cuenta haciendo click en el link que encontrarás en tu panel de
usuari\*
- **Spam y virus:** El servidor usa herramientas de antivirus y antispam pero, al igual que muchos otros servicios comerciales, son
poco efectivos. A todos los correos se les asigna una puntuación en base a algunas reglas bastante establecidas sobre el spam. Si algún
correo electrónico recibe una puntuación lo suficientemente elevada, se le agrega, en el Asunto, la etiqueta \*\*\*SPAM\*\*\*. Luego
podrás configurar tu cliente de email para que filtre esos mensajes. De todas formas, te recomendamos que mires los emails que son
"etiquetados" como SPAM, porque el filtro no es infalible.
- **Envío de Spam y virus:** Para evitar tener nuestros servidores incluidos en las listas negras de medio mundo, no queremos que nuestras
cuentas de email sean usadas para enviar spam o virus. Cualquier cuenta que haga esto será desactivada sin mayor noticia.
- **Responsabilidades legales:** Respecto a todo lo demás que hagas. Nuestros servidores no son responsables de lo que escribes, ni por la
salvaguarda de tu propia privacidad. Por ello te invitamos a que uses todas las
[herramientas](/docs/mail/privacymail "protect your privacy") que existen para proteger tu privacidad.
--------------------------------------------------------------------------------------------------------------------------------------------
### <a name="web"></a>Alojamiento web y blogs
- La responsabilidad del contenido que hay en un sitio recae en el/la webmaster de ese sitio. El colectivo que llevamos
Autistici-Inventati no puede asumir la responsabilidad por los contenidos alojados en cada uno de los sitios.
Por ello, invitamos a tod\*s l\*s webmasteres a respetar nuestros principios y sólo
solicitar el servicio una vez hayan leído y estén de acuerdo con nuestro [manifesto](/who/manifesto "manifesto").
- El espacio web será otorgado únicamente a través de la aprobación del colectivo. Sitios web personales no serán alojados a no ser que
publiquen contenido y documentos de particular interés de acuerdo a nuestro [manifesto](/who/manifesto "manifesto") y a la
opinión del colectivo.
- Te recordamos que no subas al sitio materiales protegido por copyright (como algunos mp3 y divx) que puedan poner en peligro nuestros
servidores (y todos los servicios conectados)
- Cuando trabajes en tu sitio, piensa un poco en la batalla que estamos luchando por un conocimiento colaborativo libre. Esperamos que
seas sensible a éstas batallas. Piensa en nosotr\*s cuando veas esa pequeña, pero significativa, marca de
"copyright" en el pié de tu página.
El material publicado en nuestros servidores tendrá que ser estar disponible cuando menos con una **licencia libre** (como por ejemplo:
[GPL](http://wwww.gnu.org/), o [Creative Commons](http://www.creativecommons.it/)) -- si acaso decides usar alguna licencia con
copyright ;)
- Los límites del espacio web son los de los recursos de la máquina. Esto significa que no es una buena idea usar estos espacios para
datos personales, o archivos de gran tamaño, a no ser que sea estrictamente necesario. **Generalmente, confiamos en la colaboración
y responsabilidad.**.
**Si tienes archivos muy grandes** que tener en línea, te invitamos a contactar con nosotr\*s para verificar
el espacio disponible antes de subir el archivo.
- A/I intenta salvaguradar la privacidad y anonimidad de sus usuari\*s: Por lo tanto no está permitido utilizar
contadores u otros servicios de estadística web (como shinystat o google analytics) en cualquier sitio web, porque éstos serviciios
guardan las IP de las personas que visitan dicho sitio. Si quieres un contador, usa
[Piwik](/services/piwik "Statistiche Piwik A/I"), nuestro nuevo servicio de estadísticas.
- Cuando trabajes en tu sitio, piensa que no todas las personas tienen la última tecnología, y por lo tanto quizás haya personas que no
puedan ver tu sitio; para nosotr\*s la **accesibilidad** de los sitios web que alojamos es importante.(mira
<http://www.ecn.org/xs2web> para tener más información).
- En la página de [propaganda](/who/propaganda "propaganda") de nuestro sitio encontrarás un pequeño logo del proyecto A/I,
estaremos muy felices de ver que los sitios que alojamos lo dicen por alguna parte ;))))). Incluso, en el caso de que estés utilizando
tu propio dominio (lee nuestras [notas técnicas](/docs/web/domains "Register your own domain")), el que incluyas un pequeño
logo de Inventanti/Autistici en tu página principal es considerado como gesto pequeño pero importante. Muestra que compartes y apoyas
nuestro proyecto.
- **No está permitido que se utilice el espacio asignado para redireccionar a otros sitios**, porque consideramos que esto es un gasto
innecesario de nuestros recursos
- El espacio en los servidores que no haya sido utilizado en los 90 días posteriores a su activación serán desactivados y eliminados (por
las mismas razones de antes)
- Si has solicitado el uso de MySQL, el mantenimiento de la base de datos se hace a través de la interfaz web
NO ES NECESARIO que instales ningún software como phpmyadmin (o similar) para manejar tus bases de datos, porque ya lo hemos intalado y
lo tenemos bien cuidado y atendido.
- - -
Si tienes más dudas, puedes mirar nuestras [Preguntas frecuentes](/docs/faq) o [¡contactar con nostr\*s!](mailto:info@autistici.org).
title: Policy
----
Policy
======
Le pregiudiziali per poter partecipare ai servizi offerti su questo server sono
la condivisione dei principi di **antifascismo, antirazzismo, antisessismo,
antiomofobia, antitransfobia, antimilitarismo e non commercialità** che animano
questo progetto, oltre ovviamente a una buona dose di volontà di condivisione e
di relazione e a un bel po' di pazienza ;)))))
Spazi e servizi di questo server non vengono destinati ad attività (direttamente
o indirettamente) commerciali, al clero, ai partiti politici istituzionali o
comunque, in sintesi, a qualunque realtà che disponga di altri potenti mezzi per
veicolare i propri contenuti, o che utilizzi il concetto di delega (esplicita o
implicita) per la gestione di rapporti e progetti.
Il server conserva solo i log strettamente necessari a operazioni di debugging,
che comunque non sono associabili in alcun modo ai dati identificativi degli
utenti dei nostri servizi. Per saperne di piu' su come gestiamo i tuoi dati,
puoi leggere [questo documento](/who/your_data)
Policy specifiche dei servizi:
------------------------------
- [E-Mail (e anche mailing list e newsletter)](#mail)
- [Siti web e blog](#web)
------------------------------------------------------------------------------------------------------------------
### <a name="mail"></a>E-Mail (e anche mailing list e newsletter per quanto riguarda lo spam)
Aprire una casella sul nostro server significa anche condividere il nostro
[manifesto](/who/manifesto) e prendere atto di quanto segue.
- **Limiti di spazio su disco**: L'utilizzo della tua casella è limitato dal
rispetto di tutti coloro che devono usare i nostri servizi. Le risorse
scarseggiano, il servizio è gratuito e gli utenti sono molti. Ti invitiamo
quindi a utilizzare con moderazione lo spazio su disco, scaricando o
cancellando la tua posta il più spesso possibile.
- **Utilizzo/Inutilizzo del servizio**: Le caselle non usate per più di 365
giorni verranno cancellate. Se pensi di non utilizzare la casella per più di
un anno ma intendi comunque mantenerla,
[scrivici](mailto:info@autistici.org).
- **Uso della WebMail**: La webmail impegna molte risorse del server, ed è
quindi da utilizzare esclusivamente per le emergenze; normalmente utilizza un
programma di posta (come Thunderbird) e scarica la tua mail su un computer.
- **Password:** Per ragioni legate alla privacy, noi non manteniamo nessun
registro di chi richiede l'attivazione di una casella di posta. Per poter
usare la tua email dovrai scegliere una semplice domanda che ti consentirà il
recupero della password in caso di smarrimento (la "domanda del gatto"). Se
dimentichi anche la domanda o la risposta a quest'ultima, noi non potremo
rispedirti i dati per accedere alla casella, ma solo creartene una nuova.
Ricorda quindi di impostare il sistema automatico per recuperarla: per farlo
ti bastera' cliccare su "imposta il gatto" dal tuo pannello utente. Un'altra
cosa fondamentale per la tua e per la nostra sicurezza è cambiare
periodicamente la tua password: per farlo clicca su "cambia password" dal tuo
pannello utente.
- **Ricevere Spam e Virus**: Il server utilizza sistemi di antivirus e antispam,
ma come per i servizi commerciali, funzionano poco. A ogni mail viene dato un
punteggio. Se la mail raggiunge il punteggio stabilito, nel Subject viene
aggiunta la dizione \*\*\* SPAM \*\*\*. Puoi quindi configurare il tuo client
per filtrare i messaggi di spam. Consigliamo comunque di controllare le mail
"taggate" (contrassegnate) come spam, visto che il filtro non è infallibile.
- **Mandare Spam e Virus**: Per evitare di essere inseriti nella blacklist di
mezzo mondo, non vogliamo che i nostri account di posta vengano utilizzati per
spam. Se ci accorgiamo che una casella di posta viene usata per inviare spam
la disabiliteremo senza preavviso.
- **Responsabilità legale**: Come per tutto quello che fai, è importante che tu
sappia che il nostro server non è responsabile per quello che scrivi, né
tantomeno per la salvaguardia della tua privacy. Ti invitiamo quindi a
utilizzare al meglio tutti gli [strumenti](/docs/mail/privacymail "proteggi la
tua privacy") che esistono per difendere il tuo diritto alla privacy.
---------------------------------------------------------------------------------------------------------------
### <a name="web"></a>Siti web e blog
- La responsabilità per il contenuto del sito è del webmaster del sito stesso.
Il collettivo di gestione del server Autistici-Inventati non si assume alcuna
responsabilità in merito al contenuto dei siti ospitati. Invitiamo quindi
tutti i webmaster a rispettare i nostri principi e a richiedere lo spazio solo
una volta condiviso e sottoscritto il nostro [manifesto](/who/manifesto
"manifesto").
- Lo spazio web viene concesso a esclusivo giudizio del collettivo. Non vengono
concessi spazi a uso personale, a meno che in esso non vengano pubblicati
materiali di particolare interesse secondo i principi del nostro
[manifesto](/who/manifesto "manifesto") e l'opinione del collettivo.
- Ricordiamo di non uplodare sul sito materiali protetti da copyright (come
talvolta sono mp3 e divx), che metterebbero a repentaglio l'esistenza stessa
del server (e di tutti i servizi a esso connessi).
- Quando lavorate sul vostro sito, pensate alle battaglie sulla libera
circolazione dei saperi che stiamo conducendo; speriamo che siate sensibili a
queste lotte; pensateci quindi quando scrivete il piccolo ma significante
"copyright" in fondo alla pagina. Il materiale pubblicato sui server A/I
dovrà quindi essere rilasciato (qualora si decida di usare una licenza di
copyright), quantomeno, con una **licenza libera** (per citarne alcune
possibili: [GPL](http://www.gnu.org) e [Creative
Commons](http://www.creativecommons.it)).
- Il limite del tuo spazio web è limitato dalle risorse delle nostre macchine.
Questo vuol dire che non è bene utilizzare lo spazio per dati personali e di
grosse dimensioni, a meno che non sia strettamente necessario. **In generale,
confidiamo nella collaborazione e nel senso di responsabilità dei nostri
utenti**. Se hai **file molto grossi** da tenere online, ti invitiamo a
contattarci per verificare la disponibilità dello spazio disco prima
dell'upload.
- A/I intende tutelare la privacy e l'anonimato dei propri utenti: non è quindi
permesso inserire nelle proprie pagine contatori o altri servizi (tipo
shinystat o google analytics) che loggano l'IP di chi visita il sito; se
proprio desiderate un contatore, usate [piwik](/services/piwik "Statistiche
Piwik A/I"), il nostro nuovo servizio di statistiche.
- Non è permesso il doxing (cioè la pubblicazione di dati personali altrui)
perché non siamo in grado di valutarne né la buona fede, né le conseguenze per
le persone che lo subiscono e perché ci espone a rischi legali eccessivi,
anche considerato che per fare doxing non avete bisogno dei nostri servizi e
potete trovarne tanti altri (meglio se hidden service).
- Quando lavorate al vostro sito, pensate al fatto che non tutt<span
class="red">\*</span> posseggono tecnologie di ultima generazione e che anche
persone non vedenti potrebbero volerlo consultare; per noi **l'accessibilità**
dei siti ospitati su questo server è importante (vedi
<http://www.ecn.org/xs2web> per maggiori informazioni sul tema
dell'accessibilità).
- Tra i [materiali](/who/propaganda "propaganda") è disponibile un loghino del
progetto autistici.org/inventati.org e saremmo molto contente se i siti
ospitati sui nostri server lo inserissero da qualche parte nelle loro home
page ;))))). Inoltre, nel caso in cui utilizzate un vostro dominio (leggi
[note tecniche](/docs/web/domains "Registra un dominio")), mettere un piccolo
logo di Autistici/Inventati sulla vostra home page è ritenuto un piccolo ma
necessario segno di condivisione del progetto.
- **Non è permesso utilizzare lo spazio assegnato come redirect su altri siti**,
in quanto lo consideriamo un inutile spreco delle nostre risorse.
- Gli spazi lasciati inutilizzati per più di 90 giorni dall'attivazione verranno
rimossi (per lo stesso motivo).
- Se avete richiesto l'uso di MySQL, la gestione del vostro database avverrà
attraverso un'interfaccia web. NON È NECESSARIO, anzi è male, installare
software come phpadmin o interfacce web simili per l'amministrazione
dell'account MySQL nel proprio spazio web, poiché le abbiamo già installate e
predisposte con tanto amore.
- - -
Per ulteriori dubbi, dai un'occhiata alle nostre [faq](/docs/faq/) oppure
[contattaci](mailto:info@autistici.org).
title: Política
----
Política
======
Para ser hospedado em nossos servidores, você tem que compartilhar nossos
princípios de **antifascismo**, **antirracismo**, **antissexismo**,
**anti-homofobia**, **antitransfobia** e **antimilitarismo**. Seus projetos
também devem ser baseados na mesma natureza **não comercial** que mantém nosso
projeto vivo e no desejo de compartilhar e experimentar relações e lutas, com
toda a paciência que isso exige ;))))
Quaisquer serviços fornecidos em nossos servidores não podem ser destinados
(diretamente ou indiretamente) a atividades comerciais ou religiosas, nem a
partidos políticos: para encurtar uma longa história, nós não hospedamos ninguém
que já tenha meios e recursos para espalhar amplamente seus próprios conteúdos
ou ideias, ou quem usa o conceito de delegação (explícito ou implícito) e
representação em suas relações e projetos diários.
O servidor mantém apenas os logs que são estritamente necessários para operações
de depuração e eles não guardam conta de conexão a dados pessoais em nossos
servidores às reais identidades.
Fazer e Não Fazer para serviços específicos:
------------------------------
- [E-Mail (assim como listas de discussão e boletins informativos)](#mail)
- [Ospedagem web e blogs](#web)
------------------------------------------------------------------------------------------------------------------
### <a name="mail"></a>fazer e não fazer (assim como listas de discussão e
boletins informativos para questões relacionadas a spam)
Para abrir uma conta em nosso servidor significa também compartilhar de nosso
[manifesto](/who/manifesto) e tomar nota do seguinte:
- **Limites de espaço em disco**: O uso de sua conta é limitado pelo respeito devido
a todos que estão usando nossos serviços. Recursos são escassos, o serviço é
livre e os usuários são muitos. Por este motivo, nós convidamos você a limitar
o seu uso de nosso disco baixando ou excluindo seus e-mails com a maior
frequência possível.
- **Uso/Não uso deste serviço**: Caixas de correio que são deixadas sem uso por
mais de 365 dias serão desabilitadas. Se você acha que não vai usar sua conta
por mais de 12 meses, mas gostaria de mantê-la ativa mesmo assim, escreva para
nós.
- **Uso de webmail**: O WebMail precisa de muitos recursos do servidor e,
portanto, deve ser usado para emergências; para uso normal, convidamos você a
usar um cliente de e-mail e baixar seus e-mails para seu PC.
- **Senha**: Por motivos relacionados a privacidade, nós nunca mantemos
registros de ninguém que requisita a ativa de uma conta de e-mail. Para usar
seu e-mail, você precisará escolher uma pergunta simples que lhe permitirá
recuperar sua senha no caso de você perdê-la/esquecê-la. Se você também
esquecer a pergunta ou a resposta da pergunta, não seremos capazes de lhe
reenviar seus dados para acesso a sua conta novamente. A única coisa que
seremos capazes de fazer é criar uma nova conta de e-mail para você, mas não
recuperaremos suas coisas antigas. Então, lembre-se de definir a “pergunta de
recuperação” em sua conta clicando no link “recover question” que você
encontra no painel de seu usuário. Lembre-se de periodicamente alterar a sua
senha: você pode fazê-lo no link “change password” no painel de usuário.
- **Recebendo spam e vírus**: O servidor usa ferramentas de antivírus e
antispam, mas assim como qualquer outro hospedeiro comercial, eles são pouco
efetivos. Todo e-mail recebe um rank de spam usando algumas diretrizes
difundidas sobre spamming. Se o rank do e-mail for alto suficiente, ele será
marcado com a palavra \*\*\* SPAM \*\*\* na linha de Assunto do e-mail. Então,
você será capaz de configurar seu cliente de e-mail para filtra qualquer
mensagem de spam. Nós recomendamos verificar os e-mails são “marcados” como
spam, já que o filtro anti-spam é tudo, menos perfeito.
- **Enviando spam e vírus**: Para evitar ter nossos servidores incluídos em
listas negras em metade do mundo conhecido, nós não queremos que nossas contas
de e-mails sejam usadas para enviar spam. Qualquer conta apanhada fazendo isso
será desabilitada sem qualquer aviso.
- **Responsabilidades legais**: Assim como para qualquer outra coisa que você
faça, esteja ciente de que nossos servidores não são responsáveis pelo que
você escreve, nem pela guarda de sua própria privacidade. Portanto, convidamos
você a fazer o máximo com as ferramentas existentes para defender seus
direitos a privacidade.
--------------------------------------------------------------------------------
### <a name="web"></a>Hospedagem de sites e blogs
- A responsabilidade pelo conteúdo dos sites reside nos webmasters dos sites. O
coletivo que gere o servidor Autistici-Inventati não pode ser responsabilizado
pelos conteúdos de qualquer dos sites hospedados. Nós, portanto, convidamos
todos os webmasters a respeitar nossos princípios e a solicitar espaço web
apenas após ter lido e concordado com nosso manifesto. O espaço web será
fornecido apenas após a aprovação coletiva. Sites pessoais não serão
hospedados a menos que eles publiquem documentos de interesse em particular
conforme o [manifesto](/who/manifesto "manifesto") e as opiniões do coletivo.
- Lembramos você de não enviar ao site materiais protegidos por copyright (como
alguns mp3 e divx) que poderiam pôr em perigo a existência de nossos próprios
servidores (e todos os serviços conectados a eles).
- Quando você trabalhar em seu site, leve em consideração o esforço pelo livre
compartilhamento de conhecimento pelo qual nós estamos lutando. Nós esperamos
que você seja sensibilizado por esses esforços. Pense em nós quando você vir o
pequeno porém significante aviso de “copyright” na parte inferior de sua
página. O material publicado neste servidor será lançado pelo menos sob uma
**licença livre** (como, por exemplo, a [GPL](http://www.gnu.org) ou a
[Creative Commons](http://www.creativecommons.it))se você decidir usar alguma
licença com copyright.
- Os limites do seu espaço web são limitados pelos recursos da máquina. Isso
significa que não é bom usar espaço para dados pessoais ou para arquivos
grandes, a menos que seja estritamente necessário. **Geralmente, nós confiamos
na colaboração e responsabilidade**. Caso você tenha **arquivos grandes** para
manter online, nós convidamos você a nos contatar para verificar a
disponibilidade do espaço em disco antes de enviá-los.
- Nossos servidores significam a salvaguarda da privacidade e anonimato de seus
usuários: portanto, não é permitido usar contadores ou outros serviços de
estatística web (como shinycat ou google analytics) em qualquer página de
site, já que eles registram os IPs de pessoas visitando o site, o que é
completamente incompatível com nossos principais princípios. Se você realmente
deseja saber quantas pessoas visitam seu site, sinta-se à vontade para usar
[nosso serviço](/services/piwik "Statistiche Piwik A/I") de estatísticas web.
- Doxing (i.e. a publicação de dados pessoais de outras pessoas) não é permitido
porque nós não temos como estabelecer a boa-fé com a qual essa informação foi
publicada ou as consequências para as pessoas que são sujeitas ao doxing e
também porque isso nos expõe a riscos legais muito altos. Nós decidimos banir
doxing também considerando que para esse tipo de atividade há muitos serviços
- Quando você trabalhar em seu site, pense no fato de que nem todo mundo possui
acesso às últimas tecnologias existentes e que há também pessoas que não podem
ver; para nós, a **acessibilidade** dos sites hospedados neste servidor é
sempre importante.
- Na [página de propaganda](/who/propaganda "propaganda") de nosso site você
encontrará uma pequena logo do projeto autistici.org/inventati.org. Nós
ficaríamos muito felizes de saber que os sites hospedados em nossos servidores
o exibem em alguma lugar em suas páginas ;))))). Além disso, no caso de você
estar usando seu próprio domínio (leia as [notas técnicas](/docs/web/domains
"Registra un dominio")), a inclusão de uma pequena logo do Inventati/Autistici
de nossa página é considerado um pequeno, mas importante sinal de que você
compartilha e apoia nosso projeto.
- **Não é permitido usar o espaço designado como um redirecionamento para outros
sites**, pois nós consideramos isso um gasto desnecessário de nossos recursos.
- Espaço do servidor deixar sem uso por mais de 90 dias a partir da ativação
será desabilitado e excluído (pelos mesmos motivos acima).
- Se o uso de mysql tiver sido solicitada, a manutenção de nosso próprio banco
de dados ocorre por meio de interface web. NÃO É NECESSÁRIO instalar qualquer
software como phpadmin ou interfaces web similares para gerenciar sua própria
conta MySQL, porque nós já instalamos e mantemos eles com cuidado.
- - -
Se você tiver mais dúvidas, dê uma olhada em nosso [FAQ](/docs/faq/) ou [nos contate](mailto:info@autistici.org)!