>
> I hope someone can shed some light on this, not sure if im doing something
> wrong or where the issue is, but ive picked up an issue using the IMAP
> adapter and Exchange 2010
> I can connect to the Exchange server just fine however when trying to get
> a list of the items in a foder I recieve the following error (my imap
> connection is called mailbox)
>
The IMAPAdapter just maps actual mailbox names (the ones retrieved from the
server) to adapter tablenames. This seems more a compatibility issue
between the mail server and stdlib's imaplib. With trunk, you can declare
the tablename/mailbox mapping this way:
mailbox.define_tables({"inbox": "\\\\SpamALot"})
self.mailbox_size = int(selected[1][0])
>
Here, the adapter is failing to get the size value informed by the mail
server, this could be a bug related to different IMAP protocol versions or
implementations. If you still find issues with the trunk version, could you
please open a ticket about this?
--