blob: d1ce73f7ce16f30443d7deb6d3fc19a5cb603ddd (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
unmailboxes *
# Unset to properly repopulate the variables
unset smtp_pass
unset smtp_url
unset smtp_user
unset from
unset hostname
# Receive options
set imap_pass="`pass show gmail/work/mutt`"
set imap_user="`pass show gmail/work/name`"@gmail.com
set folder=imaps://`pass show gmail/work/name`@imap.gmail.com/
set spoolfile=+INBOX
set record="+[Gmail]/Sent Mail"
set postponed="+[Gmail]/Drafts"
mailboxes =INBOX =[Gmail]/Sent\ Mail =[Gmail]/Drafts =[Gmail]/Spam =[Gmail]/Trash
set imap_check_subscribed
set edit_headers=yes
set ssl_force_tls=yes
set ssl_starttls
# Show lable in mailbox
mailboxes =gsoc # lable name
mailboxes "imaps://`pass show gmail/work/name`@imap.gmail.com/gsoc"
set header_cache = "$XDG_CACHE_HOME/neomutt/headers/"
set message_cachedir = "$XDG_CACHE_HOME/neomutt/bodies/"
set certificate_file = "$XDG_CACHE_HOME/neomutt/certificates/"
# specify where to save and/or look for postponded messages
set postponed=+[Gmail]/Drafts
# allow mutt to open a new IMAP connection autmatically
unset imap_passive
# keep imap connection alive by polling intermittently
set imap_keep_alive=300
# how often to check check for new email
set mail_check=120
# gmail automatically saves sent emails, so we avoid duplicates
unset record
## Send options
set smtp_url=smtps://`pass show gmail/work/name`:`pass show gmail/work/mutt`@smtp.gmail.com
set from=`pass show gmail/work/name`@gmail.com
set hostname="gmail.com"
set realname='Brahmajit'
set use_from=yes
set signature="$HOME/.config/neomutt/signature"
## Hook
account-hook $folder "set imap_user=`pass show gmail/work/name`@gmail.com imap_pass=`pass show gmail/work/mutt`"
# vim: set ft=muttrc:
|