[dovecot-cvs] dovecot/src/imap client.h,1.10,1.11 cmd-append.c,1.22,1.23 commands-util.c,1.19,1.20 commands-util.h,1.8,1.9 commands.h,1.8,1.9 imap-search.c,1.2,1.3 imap-sort.c,1.2,1.3 imap-thread.c,1.2,1.3 mail-storage-callbacks.c,1.4,1.5 main.c,1.20,1.21

cras at procontrol.fi cras at procontrol.fi
Mon Jan 27 06:23:47 EET 2003


Update of /home/cvs/dovecot/src/imap
In directory danu:/tmp/cvs-serv11003

Modified Files:
	client.h cmd-append.c commands-util.c commands-util.h 
	commands.h imap-search.c imap-sort.c imap-thread.c 
	mail-storage-callbacks.c main.c 
Log Message:
some header file cleanups



Index: client.h
===================================================================
RCS file: /home/cvs/dovecot/src/imap/client.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- client.h	27 Jan 2003 01:59:59 -0000	1.10
+++ client.h	27 Jan 2003 04:23:45 -0000	1.11
@@ -1,10 +1,10 @@
 #ifndef __CLIENT_H
 #define __CLIENT_H
 
-#include "imap-parser.h"
-#include "mail-storage.h"
-
 struct client;
+struct mail_storage;
+struct imap_parser;
+struct imap_arg;
 
 typedef int client_command_func_t(struct client *client);
 

Index: cmd-append.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/cmd-append.c,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -d -r1.22 -r1.23
--- cmd-append.c	23 Jan 2003 03:28:46 -0000	1.22
+++ cmd-append.c	27 Jan 2003 04:23:45 -0000	1.23
@@ -7,6 +7,7 @@
 #include "commands.h"
 #include "imap-parser.h"
 #include "imap-date.h"
+#include "mail-storage.h"
 
 #include <sys/time.h>
 

Index: commands-util.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/commands-util.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- commands-util.c	23 Jan 2003 03:28:46 -0000	1.19
+++ commands-util.c	27 Jan 2003 04:23:45 -0000	1.20
@@ -4,6 +4,8 @@
 #include "str.h"
 #include "commands-util.h"
 #include "imap-util.h"
+#include "mail-storage.h"
+#include "imap-parser.h"
 
 /* Maximum length for mailbox name, including it's path. This isn't fully
    exact since the user can create folder hierarchy with small names, then

Index: commands-util.h
===================================================================
RCS file: /home/cvs/dovecot/src/imap/commands-util.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- commands-util.h	22 Jan 2003 20:46:36 -0000	1.8
+++ commands-util.h	27 Jan 2003 04:23:45 -0000	1.9
@@ -1,6 +1,8 @@
 #ifndef __COMMANDS_UTIL_H
 #define __COMMANDS_UTIL_H
 
+struct mail_full_flags;
+
 /* If should_exist is TRUE, this function returns TRUE if the mailbox
    exists. If it doesn't exist but would be a valid mailbox name, the
    error message is prefixed with [TRYCREATE].

Index: commands.h
===================================================================
RCS file: /home/cvs/dovecot/src/imap/commands.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- commands.h	27 Jan 2003 01:59:59 -0000	1.8
+++ commands.h	27 Jan 2003 04:23:45 -0000	1.9
@@ -1,8 +1,9 @@
 #ifndef __COMMANDS_H
 #define __COMMANDS_H
 
-#include "commands-util.h"
+#include "mail-storage.h"
 #include "imap-parser.h"
+#include "commands-util.h"
 
 client_command_func_t *client_command_find(const char *name);
 

Index: imap-search.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/imap-search.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- imap-search.c	21 Jan 2003 21:48:29 -0000	1.2
+++ imap-search.c	27 Jan 2003 04:23:45 -0000	1.3
@@ -3,6 +3,7 @@
 #include "common.h"
 #include "mail-search.h"
 #include "imap-search.h"
+#include "imap-parser.h"
 
 struct search_build_data {
 	pool_t pool;

Index: imap-sort.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/imap-sort.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- imap-sort.c	27 Jan 2003 01:59:59 -0000	1.2
+++ imap-sort.c	27 Jan 2003 04:23:45 -0000	1.3
@@ -11,6 +11,7 @@
 #include "ostream.h"
 #include "str.h"
 #include "imap-base-subject.h"
+#include "mail-storage.h"
 #include "imap-sort.h"
 
 #include <stdlib.h>

Index: imap-thread.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/imap-thread.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- imap-thread.c	27 Jan 2003 01:59:59 -0000	1.2
+++ imap-thread.c	27 Jan 2003 04:23:45 -0000	1.3
@@ -33,6 +33,7 @@
 #include "str.h"
 #include "message-tokenize.h"
 #include "imap-base-subject.h"
+#include "mail-storage.h"
 #include "imap-thread.h"
 
 #include <stdlib.h>

Index: mail-storage-callbacks.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/mail-storage-callbacks.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- mail-storage-callbacks.c	5 Jan 2003 13:09:51 -0000	1.4
+++ mail-storage-callbacks.c	27 Jan 2003 04:23:45 -0000	1.5
@@ -3,6 +3,7 @@
 #include "common.h"
 #include "ostream.h"
 #include "imap-util.h"
+#include "mail-storage.h"
 #include "commands-util.h"
 
 static void alert_no_diskspace(struct mailbox *mailbox __attr_unused__,

Index: main.c
===================================================================
RCS file: /home/cvs/dovecot/src/imap/main.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -d -r1.20 -r1.21
--- main.c	27 Jan 2003 01:33:40 -0000	1.20
+++ main.c	27 Jan 2003 04:23:45 -0000	1.21
@@ -7,6 +7,7 @@
 #include "restrict-access.h"
 #include "fd-close-on-exec.h"
 #include "process-title.h"
+#include "mail-storage.h"
 
 #include <stdlib.h>
 #include <syslog.h>




More information about the dovecot-cvs mailing list