diff options
| author | Gab Virebent <noreply@virebent.art> | 2026-05-23 02:48:34 +0200 |
|---|---|---|
| committer | Gab Virebent <noreply@virebent.art> | 2026-05-23 02:48:34 +0200 |
| commit | 847759f50596b0d992085aa34d7b5b78057aa7ce (patch) | |
| tree | 30b786fe24a3451f8dbb96c76f097b934abcc677 /accounts/mail2news | |
| download | neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.tar.gz neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.tar.xz neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.zip | |
Initial public release
Diffstat (limited to 'accounts/mail2news')
| -rw-r--r-- | accounts/mail2news | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/accounts/mail2news b/accounts/mail2news new file mode 100644 index 0000000..e3be1e7 --- /dev/null +++ b/accounts/mail2news @@ -0,0 +1,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 |
