Update for 5.99.7

This commit is contained in:
John Goerzen 2008-03-04 08:32:29 -06:00
parent 3cb3a675b8
commit 6e6720d1b0
7 changed files with 12 additions and 7 deletions

View File

@ -1,5 +1,5 @@
offlineimap Mail syncing software
Copyright (C) 2002 - 2007 John Goerzen
Copyright (C) 2002 - 2008 John Goerzen
<jgoerzen@complete.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -18,4 +18,4 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
from offlineimap import init
init.startup('5.99.6')
init.startup('5.99.7')

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
offlineimap (5.99.7) unstable; urgency=low
* Revert more read-only patches. Closes: #469244.
-- John Goerzen <jgoerzen@complete.org> Tue, 04 Mar 2008 08:17:55 -0600
offlineimap (5.99.6) unstable; urgency=low
* Revert read-only patch that was causing OfflineIMAP to crash for people.

2
debian/copyright vendored
View File

@ -4,7 +4,7 @@ on Fri, 21 Jun 2002 14:54:56 -0500.
The original source can always be found at:
http://software.complete.org/offlineimap/
Copyright (C) 2002 - 2007 John Goerzen
Copyright (C) 2002 - 2008 John Goerzen
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
# Startup from single-user installation
# Copyright (C) 2002 - 2005 John Goerzen
# Copyright (C) 2002 - 2008 John Goerzen
# <jgoerzen@complete.org>
#
# This program is free software; you can redistribute it and/or modify
@ -18,4 +18,4 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
from offlineimap import init
init.startup('5.99.6')
init.startup('5.99.7')

View File

@ -368,7 +368,6 @@ class IMAPFolder(BaseFolder):
try:
imapobj.select(self.getfullname())
except imapobj.readonly:
# unsure, whether this can be reached
UIBase.getglobalui().flagstoreadonly(self, uidlist, flags)
return
r = imapobj.uid('store',

View File

@ -1,5 +1,5 @@
productname = 'OfflineIMAP'
versionstr = "5.99.6"
versionstr = "5.99.7"
versionlist = versionstr.split(".")
major = versionlist[0]