-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.muttrc-private-template
More file actions
29 lines (26 loc) · 899 Bytes
/
.muttrc-private-template
File metadata and controls
29 lines (26 loc) · 899 Bytes
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
set realname = "foo bar"
set from = "foo@gmail.com"
set use_from = yes
set envelope_from = yes
# Ensure TLS is enforced
set ssl_starttls = yes
set ssl_force_tls = yes
# Protocol: smtp for TLS (587), smtps for SSL (465)
set smtp_url = "smtp://foo@gmail.com@smtp.gmail.com:587/"
# do this bearing in mind that gmail app passwords can contain spaces!...
set smtp_pass = ""
set imap_user = "foo@gmail.com"
# do this bearing in mind that gmail app passwords can contain spaces!...
set imap_pass = ""
set imap_keepalive = 900
set folder = "imaps://imap.gmail.com:993"
set spoolfile = "+INBOX"
set record = "+[Gmail]/Sent Mail"
set postponed = "+[Gmail]/Drafts"
set header_cache = "~/.mutt/cache/headers"
set message_cachedir = "~/.mutt/cache/bodies"
set certificate_file = "~/.mutt/certificates"
set move = no
# Needed to get and display mail (imap-fetch-mail)
set editor = "vim"
set charset = "utf-8"