offlineimap rev 487

"Automatic Subversion Change Mailer" <[email protected]> Thu, 26 Jun 2003 14:03:15 -0500 (CDT)
Newsgroups gmane.mail.imap.offlineimap.subversion
Message-ID <[email protected]>
You are receiving this message because
all commits get sent to this address.

Author: jgoerzen
Date: 2003-06-26 14:03:07 -0500 (Thu, 26 Jun 2003)
New Revision: 487

Modified:
  offlineimap/head/offlineimap.py
  offlineimap/head/debian/changelog
  offlineimap/head/offlineimap/folder/Maildir.py
  offlineimap/head/offlineimap/version.py
  offlineimap/head/bin/offlineimap

Log:
Fixed version confusion


Diff:
Modified: offlineimap/head/offlineimap.py
==============================================================================
--- offlineimap/head/offlineimap.py	(original)
+++ offlineimap/head/offlineimap.py	2003-06-26 14:03:14.000000000 -0500
@@ -18,4 +18,4 @@
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 from offlineimap import init
-init.startup('3.99.19')
+init.startup('3.99.20')

Modified: offlineimap/head/debian/changelog
==============================================================================
--- offlineimap/head/debian/changelog	(original)
+++ offlineimap/head/debian/changelog	2003-06-26 14:03:14.000000000 -0500
@@ -1,13 +1,20 @@
+offlineimap (3.99.20) unstable; urgency=low
+
+  * OfflineIMAP now moves messages between new and cur in Maildir when flags
+    have changed on the server.
+  * Applied patch from Joerg Wendland <[email protected]> to use
+    APPENDUID result from mail servers that provide it.  Closes: #198772.
+
+ -- John Goerzen <[email protected]>  Thu, 27 Jun 2003 07:28:33 -0500
+
 offlineimap (3.99.19) unstable; urgency=low
 
   * Added a "force" option to imapserver/select to force a reloading of a
     folder.  Per [complete.org #67], when cachemessagelist() was called
     on an object that was cached from a previous run, it would not
     re-issue the select().
-  * Applied patch from Joerg Wendland <[email protected]> to use
-    APPENDUID result from mail servers that provide it.  Closes: #198772.
 
- -- John Goerzen <[email protected]>  Thu, 27 Jun 2003 07:04:53 -0500
+ -- John Goerzen <[email protected]>  Mon,  2 Jun 2003 07:04:53 -0500
 
 offlineimap (3.99.18) unstable; urgency=low
 

Modified: offlineimap/head/offlineimap/folder/Maildir.py
==============================================================================
--- offlineimap/head/offlineimap/folder/Maildir.py	(original)
+++ offlineimap/head/offlineimap/folder/Maildir.py	2003-06-26 14:03:14.000000000 -0500
@@ -182,6 +182,12 @@
     def savemessageflags(self, uid, flags):
         oldfilename = self.messagelist[uid]['filename']
         newpath, newname = os.path.split(oldfilename)
+        if 'S' in flags:
+            # If a message has been seen, it goes into the cur
+            # directory.  CR debian#152482, [complete.org #4]
+            newpath = os.path.join(self.getfullname(), 'cur')
+        else:
+            newpath = os.path.join(self.getfullname(), 'new')
         infostr = ':'
         infomatch = re.search('(:.*)$', newname)
         if infomatch:                   # If the info string is present..

Modified: offlineimap/head/offlineimap/version.py
==============================================================================
--- offlineimap/head/offlineimap/version.py	(original)
+++ offlineimap/head/offlineimap/version.py	2003-06-26 14:03:14.000000000 -0500
@@ -1,5 +1,5 @@
 productname = 'OfflineIMAP'
-versionstr = "3.99.19"
+versionstr = "3.99.20"
 revno = long('$Rev$'[6:-2])
 revstr = "Rev %d" % revno
 datestr = '$Date$'

Modified: offlineimap/head/bin/offlineimap
==============================================================================
--- offlineimap/head/bin/offlineimap	(original)
+++ offlineimap/head/bin/offlineimap	2003-06-26 14:03:14.000000000 -0500
@@ -18,4 +18,4 @@
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 from offlineimap import init
-init.startup('3.99.19')
+init.startup('3.99.20')