forked from daviwil/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.offlineimaprc
58 lines (52 loc) · 1.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
[general]
accounts = Fastmail
pythonfile = ~/.dotfiles/.bin/get_pass.py
[Account Outlook]
localrepository = OutlookLocal
remoterepository = OutlookRemote
[Repository OutlookLocal]
type = Maildir
localfolders = ~/Mail/Personal
[Repository OutlookRemote]
type = IMAP
remotehost = outlook.office365.com
remoteuser = [email protected]
remotepasseval = get_pass("Mail/Outlook/david-at-daviwil")
remoteport = 993
auth_mechanisms = GSSAPI, CRAM-MD5, PLAIN, LOGIN
ssl = yes
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
realdelete = no
folderfilter = lambda folder: folder not in [
'Deleted Items',
'Drafts',
'Journal',
'Junk Email',
'Junk',
'Scheduled'
'Notes',
'Outbox']
[Account Fastmail]
localrepository = FastmailLocal
remoterepository = FastmailRemote
[Repository FastmailLocal]
type = Maildir
localfolders = ~/Mail/Fastmail
[Repository FastmailRemote]
type = IMAP
remotehost = imap.fastmail.com
remoteuser = [email protected]
remotepasseval = get_pass("Mail/Fastmail/daviwil")
remoteport = 993
auth_mechanisms = GSSAPI, CRAM-MD5, PLAIN, LOGIN
ssl = yes
expunge = no
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
folderfilter = lambda folder: folder not in [
'Deleted Items',
'Deleted Messages',
'Sent Messages',
'INBOX/Sent Items',
'Junk E-mail',
'Junk',
'Notes']