0

我正在使用 imaplib 模块连接到 Gmail Imap,我收到了下面提到的错误。我正在使用选择命令进行连接

Labelname is  **LabelName 

我得到这个错误:

    resp, data = self._imap.select("**LabelName")
  File "/usr/lib/python2.6/imaplib.py", line 642, in select
    typ, dat = self._simple_command(name, mailbox)
  File "/usr/lib/python2.6/imaplib.py", line 1060, in _simple_command
    return self._command_complete(name, self._command(name, *args))
  File "/usr/lib/python2.6/imaplib.py", line 895, in _command_complete
    raise self.error('%s command error: %s %s' % (name, typ, data))
imaplib.error: SELECT command error: BAD ['Could not parse command']

而如果 Labelname 是

** LabelName 

它成功连接。

谁能告诉我这里发生了什么?

4

1 回答 1

2

解决了这个问题,在使用 imaplib 连接时,我们需要像这样连接:

imapobj.select('"'+ '**Foldername' + '"')

这导致像这样选择

"**Foldername"
于 2012-05-01T08:21:47.990 回答