From 6e6720d1b0e1053a291187eaaf26dd3fcf5fb682 Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Tue, 4 Mar 2008 08:32:29 -0600 Subject: [PATCH] Update for 5.99.7 --- COPYRIGHT | 2 +- bin/offlineimap | 2 +- debian/changelog | 6 ++++++ debian/copyright | 2 +- offlineimap.py | 4 ++-- offlineimap/folder/IMAP.py | 1 - offlineimap/version.py | 2 +- 7 files changed, 12 insertions(+), 7 deletions(-) diff --git a/COPYRIGHT b/COPYRIGHT index 61aae00..763363e 100644 --- a/COPYRIGHT +++ b/COPYRIGHT @@ -1,5 +1,5 @@ offlineimap Mail syncing software -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 diff --git a/bin/offlineimap b/bin/offlineimap index cc66523..00da684 100644 --- a/bin/offlineimap +++ b/bin/offlineimap @@ -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') diff --git a/debian/changelog b/debian/changelog index 62641af..ba767b6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +offlineimap (5.99.7) unstable; urgency=low + + * Revert more read-only patches. Closes: #469244. + + -- John Goerzen 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. diff --git a/debian/copyright b/debian/copyright index 84f1b97..87ca7cb 100644 --- a/debian/copyright +++ b/debian/copyright @@ -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 diff --git a/offlineimap.py b/offlineimap.py index 824953a..4c2e553 100644 --- a/offlineimap.py +++ b/offlineimap.py @@ -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 # # # 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') diff --git a/offlineimap/folder/IMAP.py b/offlineimap/folder/IMAP.py index efba10c..05edaf0 100644 --- a/offlineimap/folder/IMAP.py +++ b/offlineimap/folder/IMAP.py @@ -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', diff --git a/offlineimap/version.py b/offlineimap/version.py index 220a904..01ea23a 100644 --- a/offlineimap/version.py +++ b/offlineimap/version.py @@ -1,5 +1,5 @@ productname = 'OfflineIMAP' -versionstr = "5.99.6" +versionstr = "5.99.7" versionlist = versionstr.split(".") major = versionlist[0]