blob: d889482f31fcece3f5de441b84885c7f573d1a13 (
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
|
IMAPAccount home
Host imap.gmail.com
UserCmd "gpg -q --for-your-eyes-only -d ~/.authinfo.gpg | awk -F ' ' '/ACCOUNT_NAME/ { print $(NF-2); exit; }'"
PassCmd "gpg -q --for-your-eyes-only -d ~/.authinfo.gpg | awk -F ' ' '/ACCOUNT_NAME/ { print $NF; exit; }'"
SSLType IMAPS
AuthMechs LOGIN
IMAPStore home-remote
Account home
MaildirStore home-local
Subfolders Verbatim
# The trailing "/" is important
Path ~/Mail/[email protected]/
Inbox ~/Mail/[email protected]/Inbox
Channel home-inbox
Far :home-remote:
Near :home-local:
Patterns "INBOX"
Channel home-sent
Far :home-remote:"[Gmail]/Sent Mail"
Near :home-local:sent
Channel home-trash
Far :home-remote:"[Gmail]/Trash"
Near :home-local:trash
Group home
Channel home-inbox
Channel home-sent
Channel home-trash
# Gmail mailboxes:
# "All Mail"
# "Drafts"
# "Important"
# "Sent Mail"
# "Spam"
# "Starred"
# "Trash"
|