diff options
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 |
