Re: OfflineIMAP 6.1.2 release
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
On Thu, Jul 16, 2009 at 04:28:00AM -0500, John Goerzen wrote:
> OfflineIMAP 6.1.2 is available now:
>
> * Applied patch from Peter Colberg to remove usage of hard linking.
> Closes: #535160.
> * Fix the order of folders during sync. Patch from
> Nicolas Dandrimont. Closes: #535540.
> * Reduce memory usage when scanning Maildirs. Patch from Michal
> Vitecek.
> * Use latest version of imaplib2. Patch from Christoph H=C3=B6ger.
> Fixes Kerberos login problems.
> * Quick synchronizations (for 'quick' > 0) are now performed between
> full synchronizations (as specified in the documentation).
> Patch from Michal Vitecek.
Is there a chance you could apply the nointernaldate patch I sent? Its
absence is causing problems here by making offlineimap use 200% the
amount of necessary bandwidth, and getting people over quota.
Thanks,
Marc
--
"A mouse is a device used to point at the xterm you want to type in" - A.S.R.
Microsoft is to operating systems & security ....
.... what McDonalds is to gourmet cooking
Home page: http://marc.merlins.org/
-- Attached file included as plaintext by Ecartis --
--- IMAP.py.orig 2009-05-29 14:09:43.807823000 -0700
+++ IMAP.py 2009-05-29 14:09:48.650472000 -0700
@@ -135,7 +135,7 @@
# Now, get the flags and UIDs for these.
# We could conceivably get rid of maxmsgid and just say
# '1:*' here.
- response = imapobj.fetch('1:%d' % maxmsgid, '(FLAGS UID
INTERNALDATE)')[1]
+ response = imapobj.fetch('1:%d' % maxmsgid, '(FLAGS UID)')[1]
finally:
self.imapserver.releaseconnection(imapobj)
for messagestr in response:
|
|