* fix groupdav handling
[citadel.git] / webcit / groupdav.h
1 /* $Id$ */
2
3
4 /*
5  * Data passed back and forth between groupdav_get() and its
6  * callback functions called by the MIME parser
7  */
8 struct epdata {
9         char desired_content_type_1[128];
10         char desired_content_type_2[128];
11         char found_section[128];
12         char charset[128];
13 };
14
15
16 void groupdav_common_headers(void);
17 void groupdav_get(void);
18 void groupdav_put(void);
19 void groupdav_delete(void);
20 void groupdav_propfind(void);
21 void groupdav_options(void);
22
23 long locate_message_by_uid(const char *);
24 void groupdav_folder_list(void);
25 void euid_escapize(char *, const char *);
26 void euid_unescapize(char *, const char *);
27 void groupdav_identify_host(void);