-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.offlineimaprc
63 lines (57 loc) · 2.31 KB
/
.offlineimaprc
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
60
61
62
63
[general]
ui = ttyui
accounts = Personal, GitHub
pythonfile = ~/.mutt/offlineimap.py
fsync = False
maxsyncaccounts = 2
postsynchook = /opt/boxen/homebrew/bin/notmuch new
[Account Personal]
localrepository = Personal-Local
remoterepository = Personal-Remote
status_backend = sqlite
[Account GitHub]
localrepository = GitHub-Local
remoterepository = GitHub-Remote
status_backend = sqlite
[Repository Personal-Local]
type = Maildir
localfolders = ~/.mail/personal
nametrans = lambda folder: {
'sent': '[Gmail]/Sent Mail',
'trash': '[Gmail]/Trash',
'archive': '[Gmail]/All Mail',
}.get(folder, folder)
[Repository GitHub-Local]
type = Maildir
localfolders = ~/.mail/github
nametrans = lambda folder: {'drafts': '[Gmail]/Drafts',
'sent': '[Gmail]/Sent Mail',
'trash': '[Gmail]/Trash',
'archive': '[Gmail]/All Mail',
}.get(folder, folder)
[Repository Personal-Remote]
maxconnections = 1
type = Gmail
remoteuser = [email protected]
remotepasseval = get_keychain_pass(account="[email protected]", server="imap.gmail.com")
realdelete = no
nametrans = lambda folder: {
'[Gmail]/Sent Mail': 'sent',
'[Gmail]/Trash': 'trash',
'[Gmail]/All Mail': 'archive',
}.get(folder, folder)
folderfilter = lambda folder: folder in ['[Gmail]/Drafts', '[Gmail]/Sent Mail', '[Gmail]/Trash', '[Gmail]/All Mail', 'INBOX']
cert_fingerprint = 89091347184d41768bfc0da9fad94bfe882dd358
[Repository GitHub-Remote]
maxconnections = 1
type = Gmail
remoteuser = [email protected]
remotepasseval = get_keychain_pass(account="[email protected]", server="imap.gmail.com")
realdelete = no
nametrans = lambda folder: {'[Gmail]/Drafts': 'drafts',
'[Gmail]/Sent Mail': 'sent',
'[Gmail]/Trash': 'trash',
'[Gmail]/All Mail': 'archive',
}.get(folder, folder)
folderfilter = lambda folder: folder in ['[Gmail]/Drafts', '[Gmail]/Sent Mail', '[Gmail]/Trash', '[Gmail]/All Mail', 'INBOX']
cert_fingerprint = 89091347184d41768bfc0da9fad94bfe882dd358