blob: e3be1e7826a78036a40e989790d8f1c23e177ce3 (
plain) (
blame)
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
|
# Account: mail2news (solo SMTP via Tor, nessun IMAP)
#
# Questo account usa un indirizzo fisso (mittente anonimo) e una chiave ECC dedicata
# per firmare tutti i post Usenet inviati via mail2news.
#
# Il server SMTP è raggiungibile solo via Tor (.onion) — nessuna connessione clearnet.
# Il "From" viene settato qui e usato dallo script m2n-post.sh
# Mittente fisso per tutti i post mail2news
# Usa un indirizzo .invalid per non rivelare email reale
set from = "anon@anonymous.invalid"
set realname = "Anonymous"
# Nessun IMAP - solo invio
set folder = ""
set spoolfile = ""
# SMTP via Tor (.onion) — mail2news server onion
# Sostituisci con l'indirizzo .onion del tuo server mail2news preferito
# Esempio noto: mail2news pubblico su Tor
set smtp_url = "smtp://MAIL2NEWS_ONION_ADDRESS.onion:25"
set smtp_pass = ""
set ssl_starttls = no
set ssl_force_tls = no
# GPG/ECC — chiave dedicata per mail2news (separata dalle email personali)
# Genera con: gpg --full-generate-key → ECC/Ed25519
# Poi esporta la pubkey su keyserver o allegala nei post
set pgp_default_key = "FINGERPRINT_CHIAVE_ECC_MAIL2NEWS"
set pgp_sign_as = "FINGERPRINT_CHIAVE_ECC_MAIL2NEWS"
set crypt_autosign = yes # firma automatica di tutti i post
# Header identificativo
my_hdr X-Mailer: NeoMutt/mail2news
color status black white
|