]> code.delx.au - offlineimap/commitdiff
Update for 5.99.7 debian/5.99.7
authorJohn Goerzen <jgoerzen@complete.org>
Tue, 4 Mar 2008 14:32:29 +0000 (08:32 -0600)
committerJohn Goerzen <jgoerzen@complete.org>
Tue, 4 Mar 2008 14:32:29 +0000 (08:32 -0600)
COPYRIGHT
bin/offlineimap
debian/changelog
debian/copyright
offlineimap.py
offlineimap/folder/IMAP.py
offlineimap/version.py

index 61aae00c50b415369db3c41c180aaac963e550bc..763363e03a0495e4877985e8f4e7fdcb9ec372a4 100644 (file)
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -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
index cc665235ee39506fd8cb8c45e5419406daac3874..00da6848a475f781b3e5c946ac896e8b886db245 100644 (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')
index 62641afb793e9e0e2a295ab94a1d8a70781863ff..ba767b6b475b4b8b07b539339772f6628378d4ca 100644 (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.
index 84f1b97bca5d516a801c3dbb02f054b9f270de0d..87ca7cb9fbe181e14a2accbd2e35e8a3d0c71371 100644 (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
index 824953afb1e3476ac2f28f8dd60dcc71bb49aebc..4c2e55319e48c69b7f712aa49bbb88bd7ddaf8bb 100644 (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')
index efba10c47fe8852ed7601cd3b411f19975007810..05edaf0033ab6bb624a2ab22df63ca343cfa34b7 100644 (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',
index 220a904056f7c8fe45b41c88d15fb030df4543fd..01ea23a9ce58ec9245d54741df6fff1ce50cdccc 100644 (file)
@@ -1,5 +1,5 @@
 productname = 'OfflineIMAP'
-versionstr = "5.99.6"
+versionstr = "5.99.7"
 
 versionlist = versionstr.split(".")
 major = versionlist[0]