blob: 28608b89df9c7b591be6d8eddf6240906cc2b101 (
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
|
# 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
|