summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-12-20 19:20:50 -0300
committerTomás Touceda <chiiph@leap.se>2013-12-20 19:20:50 -0300
commit8d4e17a279218de99b495955e96672587cb237e7 (patch)
tree570a26068375713f79fc1747bb5fbb69687c5bf6
parentef5b6b3fd04ba121bef04895e329ff9d98651da2 (diff)
Limit the size of the returned messages from IMAP to MUA to 100
-rw-r--r--changes/bug_fetch_size4
-rw-r--r--src/leap/mail/imap/server.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/changes/bug_fetch_size b/changes/bug_fetch_size
new file mode 100644
index 0000000..e9e97b9
--- /dev/null
+++ b/changes/bug_fetch_size
@@ -0,0 +1,4 @@
+ o Limit the size of the messages returned to the IMAP client to 100,
+ since Thunderbird hangs with numbers bigger than those. This is a
+ quick fix until we figure out how does Thunderbird want to receive
+ more than 100 mails at a time. \ No newline at end of file
diff --git a/src/leap/mail/imap/server.py b/src/leap/mail/imap/server.py
index 5672e25..2739f8c 100644
--- a/src/leap/mail/imap/server.py
+++ b/src/leap/mail/imap/server.py
@@ -1675,7 +1675,7 @@ class SoledadMailbox(WithMsgFields):
if self.isWriteable():
self._unset_recent_flag()
- return tuple(result)
+ return tuple(result[:100])
def _unset_recent_flag(self):
"""