/head: changeset 66

Bug fixes
This commit is contained in:
jgoerzen
2002-07-04 02:58:12 +01:00
parent 45e6279680
commit cabb768745
3 changed files with 68 additions and 54 deletions

View File

@ -53,7 +53,7 @@ class IMAPFolder(BaseFolder):
try:
imapobj.select(self.getfullname())
self.messagelist = {}
response = self.imapobj.status(self.getfullname(), '(MESSAGES)')[1][0]
response = imapobj.status(self.getfullname(), '(MESSAGES)')[1][0]
result = imaputil.imapsplit(response)[1]
maxmsgid = long(imaputil.flags2hash(result)['MESSAGES'])
if (maxmsgid < 1):