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/account1 | |
| download | neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.tar.gz neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.tar.xz neomutt-config-847759f50596b0d992085aa34d7b5b78057aa7ce.zip | |
Initial public release
Diffstat (limited to 'accounts/account1')
| -rw-r--r-- | accounts/account1 | 30 |
1 files changed, 30 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 |
