Estou tentando sincronizar meus e-mails do gmail com meu servidor de e-mail local usando o mbsync . Mas eu continuo recebendo um erro Error: SASL(-4): no mechanism available: No worthy mechs found
Aqui está o meu arquivo .mbsyncrc
:
#IMAP server you wish to copy mails from.
IMAPAccount original
Host imap.gmail.com
User [email protected]
AuthMechs XOAUTH2
Pass access_token_recieved_from_google
UseIMAPS yes
CertificateFile /etc/ssl/certs/ca-certificates.crt
# The IMAP server you wish to copy mails to.
IMAPAccount target
Host local.mail.server.host
User local_user
Pass somepass
AuthMechs LOGIN
UseIMAPS yes
CertificateFile /etc/ssl/certs/ca-certificates.crt
# Link IMAP server to remote used below. Note Account is set to 'original' now -- we'll be set it to 'target' later!
IMAPStore my-remote
Account original
# The local storage we'll be using. Note the trailing slash at the end of the Path!
MaildirStore my-local
Path ~/mail/
Inbox ~/mail/INBOX/
# This is where the magic happens. Note Sync is set to 'Pull' now -- we'll set it to 'Push' later!
Channel my-channel
Master :my-remote:
Slave :my-local:
Patterns *
Create Both
Sync Pull
SyncState *
system: Linux stretch 4.9.0-7-amd64 #1 SMP Debian 4.9.110-1 (2018-07-05) x86_64 GNU/Linux
mbsync --version isync 1.2.1
parece que o mbsync não está reconhecendo XOAUTH2
para a palavra-chave AuthMechs
. Se eu alterar o tipo AuthMech para LOGIN
, recebo um erro invalid credentials
. (faz sentido, eu coloquei um token de autenticação no lugar da senha).
Alguma ideia?
Tags email imap offlineimap