Update for 5.99.7
This commit is contained in:
parent
3cb3a675b8
commit
6e6720d1b0
@ -1,5 +1,5 @@
|
|||||||
offlineimap Mail syncing software
|
offlineimap Mail syncing software
|
||||||
Copyright (C) 2002 - 2007 John Goerzen
|
Copyright (C) 2002 - 2008 John Goerzen
|
||||||
<jgoerzen@complete.org>
|
<jgoerzen@complete.org>
|
||||||
This program is free software; you can redistribute it and/or modify
|
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
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -18,4 +18,4 @@
|
|||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
from offlineimap import init
|
from offlineimap import init
|
||||||
init.startup('5.99.6')
|
init.startup('5.99.7')
|
||||||
|
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -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
|
offlineimap (5.99.6) unstable; urgency=low
|
||||||
|
|
||||||
* Revert read-only patch that was causing OfflineIMAP to crash for people.
|
* Revert read-only patch that was causing OfflineIMAP to crash for people.
|
||||||
|
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -4,7 +4,7 @@ on Fri, 21 Jun 2002 14:54:56 -0500.
|
|||||||
The original source can always be found at:
|
The original source can always be found at:
|
||||||
http://software.complete.org/offlineimap/
|
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
|
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
|
it under the terms of the GNU General Public License as published by
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
# Startup from single-user installation
|
# Startup from single-user installation
|
||||||
# Copyright (C) 2002 - 2005 John Goerzen
|
# Copyright (C) 2002 - 2008 John Goerzen
|
||||||
# <jgoerzen@complete.org>
|
# <jgoerzen@complete.org>
|
||||||
#
|
#
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# 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
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
|
||||||
from offlineimap import init
|
from offlineimap import init
|
||||||
init.startup('5.99.6')
|
init.startup('5.99.7')
|
||||||
|
@ -368,7 +368,6 @@ class IMAPFolder(BaseFolder):
|
|||||||
try:
|
try:
|
||||||
imapobj.select(self.getfullname())
|
imapobj.select(self.getfullname())
|
||||||
except imapobj.readonly:
|
except imapobj.readonly:
|
||||||
# unsure, whether this can be reached
|
|
||||||
UIBase.getglobalui().flagstoreadonly(self, uidlist, flags)
|
UIBase.getglobalui().flagstoreadonly(self, uidlist, flags)
|
||||||
return
|
return
|
||||||
r = imapobj.uid('store',
|
r = imapobj.uid('store',
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
productname = 'OfflineIMAP'
|
productname = 'OfflineIMAP'
|
||||||
versionstr = "5.99.6"
|
versionstr = "5.99.7"
|
||||||
|
|
||||||
versionlist = versionstr.split(".")
|
versionlist = versionstr.split(".")
|
||||||
major = versionlist[0]
|
major = versionlist[0]
|
||||||
|
Loading…
Reference in New Issue
Block a user