dovecot-1.1: W=<vsize> is now always added to maildir filenames ...
    dovecot at dovecot.org 
    dovecot at dovecot.org
       
    Tue May 13 09:50:31 EEST 2008
    
    
  
details:   http://hg.dovecot.org/dovecot-1.1/rev/f96fd5c97375
changeset: 7511:f96fd5c97375
user:      Timo Sirainen <tss at iki.fi>
date:      Tue May 13 09:50:27 2008 +0300
description:
W=<vsize> is now always added to maildir filenames (the code was
accidentally commented out).
diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
src/lib-storage/index/maildir/maildir-save.c |    4 ++--
diffs (17 lines):
diff -r 553f26afc900 -r f96fd5c97375 src/lib-storage/index/maildir/maildir-save.c
--- a/src/lib-storage/index/maildir/maildir-save.c	Sun May 11 14:49:02 2008 +0200
+++ b/src/lib-storage/index/maildir/maildir-save.c	Tue May 13 09:50:27 2008 +0300
@@ -221,11 +221,11 @@ maildir_get_updated_filename(struct mail
 					   MAILDIR_EXTRA_FILE_SIZE, mf->size);
 	}
 
-	/*if (mf->vsize != (uoff_t)-1) {
+	if (mf->vsize != (uoff_t)-1) {
 		basename = t_strdup_printf("%s,%c=%"PRIuUOFF_T, basename,
 					   MAILDIR_EXTRA_VIRTUAL_SIZE,
 					   mf->vsize);
-	}*/
+	}
 
 	if (mf->keywords_count == 0) {
 		if ((mf->flags & MAIL_FLAGS_MASK) == MAIL_RECENT) {
    
    
More information about the dovecot-cvs
mailing list