Skip to content

Commit

Permalink
Update for 5.99.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoerzen committed Mar 4, 2008
1 parent 3cb3a67 commit 6e6720d
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Original file line Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion bin/offlineimap
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -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 changes: 6 additions & 0 deletions debian/changelog
Original file line number Original file line Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion debian/copyright
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions offlineimap.py
Original file line number Original file line Diff line number Diff line change
@@ -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
Expand All @@ -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')
1 change: 0 additions & 1 deletion offlineimap/folder/IMAP.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ def processmessagesflags(self, operation, uidlist, flags):
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',
Expand Down
2 changes: 1 addition & 1 deletion offlineimap/version.py
Original file line number Original file line Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 6e6720d

Please sign in to comment.