diff options
Diffstat (limited to 'mail/src')
| -rw-r--r-- | mail/src/leap/mail/imap/mailbox.py | 10 | 
1 files changed, 6 insertions, 4 deletions
| diff --git a/mail/src/leap/mail/imap/mailbox.py b/mail/src/leap/mail/imap/mailbox.py index 1d76d4d..7c01490 100644 --- a/mail/src/leap/mail/imap/mailbox.py +++ b/mail/src/leap/mail/imap/mailbox.py @@ -479,11 +479,13 @@ class SoledadMailbox(WithMsgFields, MBoxParser):          """          result = [] -        # XXX DEBUG ------------- -        print "getting uid", uid -        print "in mbox", self.mbox +        # For the moment our UID is sequential, so we +        # can treat them all the same. +        # Change this to the flag that twisted expects when we +        # switch to content-hash based index + local UID table. -        sequence = True if uid == 0 else False +        sequence = False +        #sequence = True if uid == 0 else False          if not messages.last:              try: | 
