我一直在使用 Google 2 因素身份验证,并配置了多个应用程序。其中之一是offlineimap(我下载邮件的地方),但是当我使用mu4e 撰写邮件时,我收到以下错误:
Sending failed: 534-5.7.9 Application-specific password required.
Learn more at 534-5.7.9
http://support.google.com/accounts/bin/answer.py?answer=185833
我有一个 ~/.authinfo.gpg 配置(它手动解密成功),我的 ~/.offlineimaprc 调用 get_password_emacs (我使用的例子可以在这里找到)。
我什至尝试跳过 gpg 片段以查看它是否有效,直接在 ~/.offlineimaprc 中使用我的 mu4e Google App 密码,但我最终得到了相同的结果。
我的 ~/.authinfo.gpg 文件:(在此处解密,已删除敏感信息)
machine imap.gmail.com login me@gmail.com port 993 password GoogleAppPassword
machine smtp.gmail.com login me@gmail.com port 587 password GoogleAppPassword
我的 ~/.offlineimaprc 文件:
[general]
accounts = Gmail
maxsyncaccounts = 3
pythonfile = ~/.offlineimap.py
[Account Gmail]
localrepository = Local
remoterepository = Remote
[Repository Local]
type = Maildir
localfolders = ~/Maildir
[Repository Remote]
remotehost = imap.gmail.com
remoteuser = me@gmail.com
remotepasseval = get_password_emacs("imap.gmail.com", "me@gmail.com", "993")
ssl = yes
maxconnections = 1
realdelete = no
holdconnectionopen = true
keepalive = 60
type = IMAP
和我的 ~/.offlineimap.py
#!/usr/bin/python
import re, os
def get_password_emacs(machine, login, port):
s = "machine %s login %s port %s password ([^ ]*)\n" % (machine, login, port)
p = re.compile(s)
authinfo = os.popen("gpg -q --no-tty -d ~/.authinfo.gpg").read()
return p.search(authinfo).group(1)
谁能看到我遇到的问题?我已验证 ~/.authinfo.gpg 文件已成功解密,并且我的 Google App 密码正确。
谢谢你的时间。