blob: 47356a4370644de9f87cc193d6f18eb248279e3f (
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
|
# references:
# /usr/share/doc/isync/examples/mbsyncrc.sample
# https://wiki.archlinux.org/title/Isync
# `man mbsync`
# https://github.com/LukeSmithxyz/mutt-wizard
IMAPStore xyz@mail.flylightning.xyz-remote
Host mail.flylightning.xyz
User xyz
# credit: GPL-2.0-or-later https://git.zx2c4.com/password-store/tree/contrib/dmenu/passmenu
PassCmd "pass master3 | { IFS= read -r p; printf %s \"$p\";}"
TLSType IMAPS
CertificateFile /etc/ssl/certs/ca-certificates.crt
IMAPStore xyz@mail2.flylightning.xyz-remote
Host mail2.flylightning.xyz
User xyz
# credit: GPL-2.0-or-later https://git.zx2c4.com/password-store/tree/contrib/dmenu/passmenu
PassCmd "pass master3 | { IFS= read -r p; printf %s \"$p\";}"
TLSType IMAPS
CertificateFile /etc/ssl/certs/ca-certificates.crt
MaildirStore xyz@mail.flylightning.xyz-local
# man page says needed
Subfolders Verbatim
# trailing slash important?
# seems $XDG_DATA_HOME does not work?
Path ~/.local/share/mail/xyz@mail.flylightning.xyz/
Inbox ~/.local/share/mail/xyz@mail.flylightning.xyz/INBOX
MaildirStore xyz@mail2.flylightning.xyz-local
# man page says needed
Subfolders Verbatim
# trailing slash important?
# seems $XDG_DATA_HOME does not work?
Path ~/.local/share/mail/xyz@mail2.flylightning.xyz/
Inbox ~/.local/share/mail/xyz@mail2.flylightning.xyz/INBOX
Channel xyz@mail.flylightning.xyz
Expunge Both
# old system use master and slave
Far :xyz@mail.flylightning.xyz-remote:
Near :xyz@mail.flylightning.xyz-local:
# not sure if needed
Patterns *
Create Both
SyncState *
Channel xyz@mail2.flylightning.xyz
Expunge Both
# old system use master and slave
Far :xyz@mail2.flylightning.xyz-remote:
Near :xyz@mail2.flylightning.xyz-local:
# not sure if needed
Patterns *
Create Both
SyncState *
|