[dovecot-cvs] dovecot/src/lib-storage/index index-storage.c, 1.49, 1.50 index-storage.h, 1.60, 1.61

cras at procontrol.fi cras at procontrol.fi
Sun May 23 01:36:48 EEST 2004


Update of /home/cvs/dovecot/src/lib-storage/index
In directory talvi:/tmp/cvs-serv5990/src/lib-storage/index

Modified Files:
	index-storage.c index-storage.h 
Log Message:
Added pop3_mails_keep_recent option. Fixed recent assert crash.



Index: index-storage.c
===================================================================
RCS file: /home/cvs/dovecot/src/lib-storage/index/index-storage.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- a/index-storage.c	22 May 2004 00:48:45 -0000	1.49
+++ b/index-storage.c	22 May 2004 22:36:46 -0000	1.50
@@ -330,6 +330,7 @@
 		ibox->box.storage = &storage->storage;
 		ibox->box.name = i_strdup(name);
 		ibox->readonly = (flags & MAILBOX_OPEN_READONLY) != 0;
+		ibox->keep_recent = (flags & MAILBOX_OPEN_KEEP_RECENT) != 0;
 
 		ibox->index = index;
 

Index: index-storage.h
===================================================================
RCS file: /home/cvs/dovecot/src/lib-storage/index/index-storage.h,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- a/index-storage.h	9 May 2004 23:32:43 -0000	1.60
+++ b/index-storage.h	22 May 2004 22:36:46 -0000	1.61
@@ -99,6 +99,7 @@
 	unsigned int private_flags_mask;
 
 	unsigned int readonly:1;
+	unsigned int keep_recent:1;
 	unsigned int sent_diskspace_warning:1;
 	unsigned int sent_readonly_flags_warning:1;
 	unsigned int autosync_pending:1;



More information about the dovecot-cvs mailing list