summaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorGab Virebent <noreply@virebent.art>2026-05-23 02:48:34 +0200
committerGab Virebent <noreply@virebent.art>2026-05-23 02:48:34 +0200
commit847759f50596b0d992085aa34d7b5b78057aa7ce (patch)
tree30b786fe24a3451f8dbb96c76f097b934abcc677 /accounts
downloadneomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.tar.gz
neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.tar.xz
neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.zip
Initial public release
Diffstat (limited to 'accounts')
-rw-r--r--accounts/account130
-rw-r--r--accounts/account228
-rw-r--r--accounts/account336
-rw-r--r--accounts/mail2news36
4 files changed, 130 insertions, 0 deletions
diff --git a/accounts/account1 b/accounts/account1
new file mode 100644
index 0000000..28608b8
--- /dev/null
+++ b/accounts/account1
@@ -0,0 +1,30 @@
+# Account 1 - esempio con mail server standard
+# Rinomina questo file con un nome significativo (es. "gmail", "proton", ecc.)
+# e aggiorna neomuttrc di conseguenza
+
+set from = "user@example.com"
+set realname = "Your Name"
+
+# Identificativo account per status bar
+set my_account_info = "[F2 - user@example.com]"
+set status_format = "$my_account_info │ %f %?M?(%M hidden)? %?n?(%n new)?%?d? (%d to delete)?%?t? (%t tagged)? %>─%?p?(%p postponed)?─"
+
+# IMAP (STARTTLS porta 143 oppure imaps:// porta 993 per SSL)
+set imap_user = "user@example.com"
+set imap_pass = "`pass email/account1`" # usa pass(1) per le credenziali
+set folder = "imap://mail.example.com:143"
+set spoolfile = "+INBOX"
+set record = "+Sent"
+set trash = "+Trash"
+set postponed = "+Drafts"
+
+# SMTP (STARTTLS porta 587)
+set smtp_url = "smtp://user%40example.com@mail.example.com:587"
+set smtp_pass = "`pass email/account1`"
+
+# GPG/ECC - imposta qui il fingerprint della tua chiave ECC
+# Generala con: gpg --full-generate-key (scegli ECC/Ed25519)
+set pgp_default_key = "FINGERPRINT_CHIAVE_ECC"
+set pgp_sign_as = "FINGERPRINT_CHIAVE_ECC"
+
+color status cyan default
diff --git a/accounts/account2 b/accounts/account2
new file mode 100644
index 0000000..7a1e409
--- /dev/null
+++ b/accounts/account2
@@ -0,0 +1,28 @@
+# Account 2 - esempio con provider privacy-oriented (Autistici, Riseup, ecc.)
+# Rinomina questo file con un nome significativo
+
+set from = "user@privacy-provider.org"
+set realname = "Your Name"
+
+# Identificativo account per status bar
+set my_account_info = "[F3 - user@privacy-provider.org]"
+set status_format = "$my_account_info │ %f %?M?(%M hidden)? %?n?(%n new)?%?d? (%d to delete)?%?t? (%t tagged)? %>─%?p?(%p postponed)?─"
+
+# IMAP SSL (porta 993)
+set imap_user = "user@privacy-provider.org"
+set imap_pass = "`pass email/account2`"
+set folder = "imaps://mail.privacy-provider.org:993"
+set spoolfile = "+INBOX"
+set record = "+Sent"
+set trash = "+Trash"
+set postponed = "+Drafts"
+
+# SMTP (STARTTLS porta 587)
+set smtp_url = "smtp://user%40privacy-provider.org@smtp.privacy-provider.org:587"
+set smtp_pass = "`pass email/account2`"
+
+# GPG/ECC
+set pgp_default_key = "FINGERPRINT_CHIAVE_ECC"
+set pgp_sign_as = "FINGERPRINT_CHIAVE_ECC"
+
+color status green default
diff --git a/accounts/account3 b/accounts/account3
new file mode 100644
index 0000000..3010491
--- /dev/null
+++ b/accounts/account3
@@ -0,0 +1,36 @@
+# Account 3 - esempio con FOG SMTP (server SMTP proprio su .onion)
+# Adatto per chi gestisce il proprio server SMTP raggiungibile via Tor
+# Rinomina questo file con un nome significativo
+
+set from = "user@yourdomain.tld"
+set realname = "Your Name"
+
+# Identificativo account per status bar
+set my_account_info = "[F4 - user@yourdomain.tld]"
+set status_format = "$my_account_info │ %f %?M?(%M hidden)? %?n?(%n new)?%?d? (%d to delete)?%?t? (%t tagged)? %>─%?p?(%p postponed)?─"
+
+# IMAP clearnet (opzionale, puoi usare anche .onion)
+set imap_user = "user@yourdomain.tld"
+set imap_pass = "`pass email/account3`"
+set folder = "imap://mail.yourdomain.tld:143"
+set spoolfile = "+INBOX"
+set record = "+Sent"
+set trash = "+Trash"
+set postponed = "+Drafts"
+
+# SMTP via FOG (.onion) - sostituisci con il tuo indirizzo onion
+# FOG è un relay SMTP anonimo raggiungibile via Tor
+# Imposta torsocks oppure usa ProxyCommand nella configurazione di sistema
+set smtp_url = "smtp://YOUR_FOG_ONION_ADDRESS.onion:25"
+set smtp_pass = ""
+set ssl_starttls = no
+set ssl_force_tls = no
+
+# GPG/ECC
+set pgp_default_key = "FINGERPRINT_CHIAVE_ECC"
+set pgp_sign_as = "FINGERPRINT_CHIAVE_ECC"
+
+# Nota: per usare SMTP via .onion assicurati che torsocks sia attivo
+# oppure usa SOCKS5 proxy: set smtp_url = "smtp://[socks5h://127.0.0.1:9050/]YOUR_ONION.onion:25"
+
+color status magenta default
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