2024-09-23 11:50:35 +04:00
|
|
|
[general]
|
|
|
|
pythonfile = ~/.offlineimap.py
|
2024-09-24 22:02:43 +04:00
|
|
|
accounts = Proton, Outlook, Gmail-personal-1, Gmail-personal-2
|
2024-09-24 19:59:17 +04:00
|
|
|
socktimeout = 60
|
2024-09-23 11:50:35 +04:00
|
|
|
|
|
|
|
[Account Proton]
|
|
|
|
localrepository = Proton-local
|
|
|
|
remoterepository = Proton-remote
|
|
|
|
|
|
|
|
[Repository Proton-local]
|
|
|
|
type = Maildir
|
|
|
|
localfolders = ~/Mail/Proton
|
|
|
|
|
|
|
|
[Repository Proton-remote]
|
|
|
|
type = IMAP
|
|
|
|
ssl = no
|
|
|
|
remotehost = 127.0.0.1
|
|
|
|
remoteport = 1143
|
|
|
|
remoteusereval = get_user("Proton\ Account")
|
2024-09-24 06:22:13 +04:00
|
|
|
remotepasseval = hydroxide("/home/sako/.hydroxide-bridge-pass")
|
2024-09-24 09:38:56 +04:00
|
|
|
folderfilter = lambda foldername: foldername in [ "All Mail", "Archive", "Drafts", "INBOX", "Sent", "Spam", "Starred", "Trash" ]
|
|
|
|
|
|
|
|
[Account Outlook]
|
2024-09-24 10:22:42 +04:00
|
|
|
localrepository = Outlook-local
|
2024-09-24 09:38:56 +04:00
|
|
|
remoterepository = Outlook-remote
|
|
|
|
|
|
|
|
[Repository Outlook-local]
|
2024-09-24 10:22:42 +04:00
|
|
|
type = Maildir
|
2024-09-24 09:38:56 +04:00
|
|
|
localfolders = ~/Mail/Outlook
|
|
|
|
|
|
|
|
[Repository Outlook-remote]
|
2024-09-24 10:22:42 +04:00
|
|
|
ssl = yes
|
|
|
|
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
|
2024-09-24 09:38:56 +04:00
|
|
|
type = IMAP
|
|
|
|
remoteusereval = get_user("Microsoft")
|
|
|
|
remotehost = outlook.office365.com
|
|
|
|
remoteport = 993
|
|
|
|
auth_mechanisms = XOAUTH2
|
|
|
|
oauth2_request_url = https://login.microsoftonline.com/common/oauth2/v2.0/token
|
2024-09-24 19:59:17 +04:00
|
|
|
# Thunderbird client_id below
|
2024-09-24 10:22:42 +04:00
|
|
|
oauth2_client_id = 9e5f94bc-e8a4-4e73-b8be-63364c29d753
|
2024-09-24 19:59:17 +04:00
|
|
|
# Do not need client_secret :D
|
2024-09-24 15:19:17 +04:00
|
|
|
oauth2_client_secret =
|
2024-09-24 09:45:15 +04:00
|
|
|
oauth2_refresh_token_eval = get_client_refresh_token("Microsoft")
|
2024-09-24 19:59:17 +04:00
|
|
|
folderfilter = lambda folder: not folder.startswith('Calendar') and not folder.startswith('Contacts')
|
|
|
|
|
|
|
|
[Account Gmail-personal-1]
|
|
|
|
localrepository = Gmail-personal-1-local
|
|
|
|
remoterepository = Gmail-personal-1-remote
|
|
|
|
|
|
|
|
[Repository Gmail-personal-1-local]
|
|
|
|
type = GmailMaildir
|
|
|
|
localfolders = ~/Mail/Gmail-Personal-1
|
|
|
|
# Google IMAP weirdness
|
|
|
|
nametrans = lambda f: '[Gmail]/' + f if f in ['Drafts', 'Starred', 'Important', 'Spam', 'Trash', 'All Mail', 'Sent Mail'] else f
|
|
|
|
|
|
|
|
[Repository Gmail-personal-1-remote]
|
|
|
|
ssl = yes
|
|
|
|
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
|
|
|
|
type = Gmail
|
|
|
|
remotehost = imap.gmail.com
|
|
|
|
auth_mechanisms = XOAUTH2
|
|
|
|
remoteusereval = get_user("accounts.google.com/one")
|
|
|
|
oauth2_request_url = https://accounts.google.com/o/oauth2/token
|
|
|
|
oauth2_client_id_eval = get_client_id("email/oauth/gmail")
|
|
|
|
oauth2_client_secret_eval = get_client_secret("email/oauth/gmail")
|
|
|
|
oauth2_refresh_token_eval = get_client_refresh_token("accounts.google.com/one")
|
|
|
|
# Google IMAP weirdness
|
|
|
|
nametrans = lambda f: f.replace('[Gmail]/', '') if f.startswith('[Gmail]/') else f
|
|
|
|
|
|
|
|
[Account Gmail-personal-2]
|
|
|
|
localrepository = Gmail-personal-2-local
|
|
|
|
remoterepository = Gmail-personal-2-remote
|
|
|
|
|
|
|
|
[Repository Gmail-personal-2-local]
|
|
|
|
type = GmailMaildir
|
|
|
|
localfolders = ~/Mail/Gmail-Personal-2
|
|
|
|
# Google IMAP weirdness
|
|
|
|
nametrans = lambda f: '[Gmail]/' + f if f in ['Drafts', 'Starred', 'Important', 'Spam', 'Trash', 'All Mail', 'Sent Mail'] else f
|
|
|
|
|
|
|
|
[Repository Gmail-personal-2-remote]
|
|
|
|
ssl = yes
|
|
|
|
sslcacertfile = /etc/ssl/certs/ca-certificates.crt
|
|
|
|
type = Gmail
|
|
|
|
remotehost = imap.gmail.com
|
|
|
|
auth_mechanisms = XOAUTH2
|
|
|
|
remoteusereval = get_user("accounts.google.com/two")
|
|
|
|
oauth2_request_url = https://accounts.google.com/o/oauth2/token
|
|
|
|
oauth2_client_id_eval = get_client_id("email/oauth/gmail")
|
|
|
|
oauth2_client_secret_eval = get_client_secret("email/oauth/gmail")
|
|
|
|
oauth2_refresh_token_eval = get_client_refresh_token("accounts.google.com/two")
|
|
|
|
# Google IMAP weirdness
|
|
|
|
nametrans = lambda f: f.replace('[Gmail]/', '') if f.startswith('[Gmail]/') else f
|