Skip to content

Commit 5158cae

Browse files
committed
Aggiungi istruzioni su come utilizzare Antispam IT nel README e nel documento dedicato
1 parent 0e83e82 commit 5158cae

File tree

4 files changed

+143
-0
lines changed

4 files changed

+143
-0
lines changed

README.it.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ le liste sono:
2121
- [spamassassin-blocklist.txt](https://raw.githubusercontent.com/marco-acorte/antispam-it/main/spamassassin-blocklist.txt) (regole già preparate per essere aggiunte a /etc/mail/spamassassin/local.cf)
2222
- [outlook-blocklist.txt](https://raw.githubusercontent.com/marco-acorte/antispam-it/main/outlook-blocklist.txt) (regole già pronte per essere aggiunte a MS Outlook)
2323

24+
## Come usarlo
25+
26+
Puoi usare il progetto antispam-it per bloccare le email di spam aggiungendo i domini indesiderati al tuo client o server di posta elettronica.
27+
maggiori dettagli nel documento [come usarlo](docs/how-to-use.it.md).
28+
2429
## 💖 Sostieni lo sviluppo
2530

2631
### Ti piace questo progetto? Sostienilo donando

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@ the lists are:
1919
- [spamassassin-blocklist.txt](https://raw.githubusercontent.com/marco-acorte/antispam-it/main/spamassassin-blocklist.txt) (rules already prepared to be added to /etc/mail/spamassassin/local.cf)
2020
- [outlook-blocklist.txt](https://raw.githubusercontent.com/marco-acorte/antispam-it/main/outlook-blocklist.txt) (rules already prepared to be added to MS Outlook)
2121

22+
## How to use
23+
24+
You can use the antispam-it project to block spam emails by adding bad domains to your email client or server.
25+
more details in the [how to use](docs/how-to-use.md) document.
26+
27+
2228
## 💖 Support development
2329

2430
### Do you like this project? Support it by donating

docs/how-to-use.it.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# Come usare Antispam IT
2+
3+
## Introduzione
4+
5+
Antispam IT è un progetto open source che mira a fornire un sistema di filtraggio delle email per ridurre lo spam e le email indesiderate. Questo documento fornisce una guida su come utilizzare Antispam IT.
6+
7+
## Come utilizzare Antispam IT
8+
9+
Antispam IT può essere utilizzato sia a livello client che server per bloccare le email di spam aggiungendo domini indesiderati al tuo client o server di posta elettronica.
10+
11+
### Utilizzo lato client
12+
13+
#### Come utilizzare in uBlock Origin
14+
15+
Puoi utilizzare Antispam IT con uBlock Origin per bloccare i domini di spam nel tuo browser web. Segui questi passaggi:
16+
17+
1. Installa uBlock Origin dal negozio di estensioni del tuo browser.
18+
2. Apri il dashboard di uBlock Origin facendo clic sull'icona dell'estensione e selezionando "Dashboard".
19+
3. Vai alla scheda "Filter Lists".
20+
4. Scorri verso il basso fino alla sezione "Custom".
21+
5. Fai clic su "Import" e incolla l'URL della lista Antispam IT (ad esempio, `https://raw.githubusercontent.com/marco-acorte/antispam-it/main/antispam-it.txt`).
22+
6. Fai clic su "Apply changes" per salvare la lista dei filtri.
23+
24+
#### Come utilizzare in Thunderbird
25+
26+
Puoi utilizzare Antispam IT per bloccare le email di spam in Thunderbird creando un filtro che controlla le email in arrivo rispetto alla lista dei domini indesiderati.
27+
Secondo le [regole antispam da importare in Thunderbird](https://www.wilderssecurity.com/threads/antispam-rules-to-import-in-thunderbird.280688/#post-1738806), puoi impostare un filtro come segue:
28+
29+
1. Apri Thunderbird e vai al menu "Strumenti".
30+
2. Seleziona "Filtri messaggi".
31+
3. Fai clic su "Nuovo" per creare un nuovo filtro.
32+
4. Dai un nome al filtro (ad esempio, "Blocca Spam").
33+
5. Imposta il filtro per applicarsi durante il controllo della posta o l'esecuzione manuale.
34+
6. Nella sezione "Match any of the following", aggiungi condizioni per verificare se il campo "Da" contiene uno dei domini indesiderati dalla lista Antispam IT.
35+
7. Nella sezione "Perform these actions", imposta l'azione su "Elimina messaggio" o "Sposta in Posta indesiderata".
36+
8. Salva il filtro.
37+
9. Esegui il filtro sulla tua casella di posta per applicarlo alle email esistenti.
38+
39+
#### Come utilizzare in altri client di posta elettronica
40+
41+
Puoi utilizzare Antispam IT in altri client di posta elettronica seguendo passaggi simili per creare filtri o regole che controllano le email in arrivo rispetto alla lista dei domini indesiderati.
42+
43+
### Utilizzo lato server
44+
45+
#### Spamassassin
46+
47+
Puoi utilizzare Antispam IT con Spamassassin per bloccare le email di spam sul tuo server di posta elettronica.
48+
49+
Puoi utilizzare (o studiare) lo script bash fornito nel repository per automatizzare il processo di download e aggiornamento della lista Antispam IT per Spamassassin.
50+
51+
Puoi trovare lo script nel file `import-rules.sh` del repository.
52+
53+
Lo script scaricherà l'ultima lista Antispam IT e aggiornerà automaticamente la tua configurazione di Spamassassin.
54+
55+
#### Come utilizzare nei server di posta elettronica
56+
57+
Se gestisci un server di posta elettronica, puoi integrare la lista Antispam IT nel sistema di filtraggio dello spam del tuo server. Questo di solito comporta:
58+
59+
1. Scaricare l'ultima lista Antispam IT in un formato compatibile con il tuo server di posta elettronica (ad esempio, `hosts`, `json`, `csv` o `txt`).
60+
2. Configurare le impostazioni di filtraggio dello spam del tuo server di posta elettronica per utilizzare la lista Antispam IT.
61+
3. Impostare il server per bloccare o contrassegnare le email che corrispondono a uno dei domini indesiderati nella lista.
62+
63+
### Come contribuire
64+
65+
Se desideri contribuire al progetto Antispam IT, puoi:
66+
67+
- Segnalare nuovi domini di spam aprendo un issue nel repository GitHub.
68+
- Creare pull request per aggiungere nuovi domini o migliorare la documentazione.

docs/how-to-use.md

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# How to use antispam-it
2+
3+
Use the antispam-it project to block spam emails by adding bad domains to your email client or server.
4+
5+
## client-side usage
6+
7+
### How to use in uBlock Origin
8+
9+
You can use the antispam-it project with uBlock Origin to block spam domains your web browser. Follow these steps:
10+
11+
1. Install uBlock Origin from the browser's extension store.
12+
2. Open uBlock Origin's dashboard by clicking on the extension icon and selecting "Dashboard".
13+
3. Go to the "Filter Lists" tab.
14+
4. Scroll down to the "Custom" section.
15+
5. Click on "Import" and paste the URL of the antispam-it list (e.g., `https://raw.githubusercontent.com/marco-acorte/antispam-it/main/antispam-it.txt`).
16+
6. Click "Apply changes" to save the filter list.
17+
18+
### How to use in Thunderbird
19+
20+
You can use the antispam-it project to block spam emails in Thunderbird by creating a filter that checks incoming emails against the list of bad domains.
21+
22+
According to the [antispam rules to import in Thunderbird](https://www.wilderssecurity.com/threads/antispam-rules-to-import-in-thunderbird.280688/#post-1738806), you can set up a filter as follows:
23+
24+
1. Open Thunderbird and go to the "Tools" menu.
25+
2. Select "Message Filters".
26+
3. Click on "New" to create a new filter.
27+
4. Name the filter (e.g., "Block Spam").
28+
5. Set the filter to apply when checking mail or manually running it.
29+
6. In the "Match any of the following" section, add conditions to check if the "From" field contains any of the bad domains from the antispam-it list.
30+
7. In the "Perform these actions" section, set the action to "Delete Message" or "Move to Junk".
31+
8. Save the filter.
32+
9. Run the filter on your inbox to apply it to existing emails.
33+
34+
### How to use in other email clients
35+
36+
You can use the antispam-it project in other email clients by following similar steps to create filters or rules that check incoming emails against the list of bad domains.
37+
38+
## Server-side usage
39+
40+
## Spamassassin
41+
42+
You can use the antispam-it project with Spamassassin to block spam emails on your email server.
43+
44+
You can use (or study) the bash script provided in the repository to automate the process of downloading and updating the antispam-it list for Spamassassin.
45+
46+
You can find the script in the `import-rules.sh` file of the repository.
47+
48+
The script will download the latest antispam-it list and update your Spamassassin configuration automatically.
49+
50+
### How to use in email servers
51+
52+
If you manage an email server, you can integrate the antispam-it list into your server's spam filtering system. This typically involves:
53+
54+
1. Downloading the latest antispam-it list in a format compatible with your email server (e.g., `hosts`, `json`, `csv`, or `txt`).
55+
2. Configuring your email server's spam filtering settings to use the antispam-it list.
56+
3. Setting the server to block or mark emails that match any of the bad domains in the list.
57+
58+
## How to contribute
59+
60+
If you want to contribute to the antispam-it project, you can:
61+
62+
1. Report new spam domains by creating an issue on the project's GitHub repository.
63+
2. Submit a pull request with your changes to the list.
64+
3. Share your experience or improvements in the project's documentation.

0 commit comments

Comments
 (0)