Done with doxygenizing
[citadel.git] / webcit / webcit.h
1 /* $Id$ */
2
3 #include <ctype.h>
4 #include <stdlib.h>
5 #ifdef HAVE_UNISTD_H
6 #include <unistd.h>
7 #endif
8 #include <stdio.h>
9 #ifdef HAVE_FCNTL_H
10 #include <fcntl.h>
11 #endif
12 #include <signal.h>
13 #include <sys/types.h>
14 #include <sys/wait.h>
15 #include <sys/socket.h>
16 #ifdef HAVE_SYS_TIME_H
17 #include <sys/time.h>
18 #endif
19 #include <sys/stat.h>
20 #ifdef HAVE_LIMITS_H
21 #include <limits.h>
22 #endif
23 #include <netinet/in.h>
24 #include <arpa/inet.h>
25 #include <sys/un.h>
26 #include <netdb.h>
27 #include <sys/poll.h>
28 #include <string.h>
29 #include <pwd.h>
30 #include <errno.h>
31 #include <stdarg.h>
32 #include <pthread.h>
33 #include <signal.h>
34 #include <sys/utsname.h>
35
36 #ifndef INADDR_NONE
37 #define INADDR_NONE 0xffffffff
38 #endif
39
40 #ifdef HAVE_ICONV
41 #include <iconv.h>
42 #endif
43
44 #include "gettext.h"
45
46 #if ENABLE_NLS
47 #include <locale.h>
48 #define _(string)       gettext(string)
49 #else
50 #define _(string)       (string)
51 #endif
52
53 /*
54  * Uncomment to dump an HTTP trace to stderr
55 #define HTTP_TRACING 1
56  */
57
58 #ifdef HTTP_TRACING
59 #undef HAVE_ZLIB_H
60 #undef HAVE_ZLIB
61 #endif
62
63 #ifdef HAVE_ZLIB_H
64 #include <zlib.h>
65 #endif
66
67 #ifdef HAVE_ICAL_H
68 #ifdef HAVE_LIBICAL
69 #define WEBCIT_WITH_CALENDAR_SERVICE 1
70 #endif
71 #endif
72
73
74
75 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
76 /* Work around PACKAGE/VERSION defs that are (not supposed to be?) in ical.h */
77 #ifdef PACKAGE
78 # define CTDL_PACKAGE PACKAGE
79 # undef PACKAGE
80 #endif
81 #ifdef VERSION
82 # define CTDL_VERSION VERSION
83 # undef VERSION
84 #endif
85 #include <ical.h>
86 #ifdef CTDL_PACKAGE
87 # ifdef PACKAGE
88 #  undef PACKAGE
89 # endif
90 # define PACKAGE CTDL_PACKAGE
91 # undef CTDL_PACKAGE
92 #endif
93 #ifdef CTDL_VERSION
94 # ifdef VERSION
95 #  undef VERSION
96 # endif
97 # define VERSION CTDL_VERSION
98 # undef CTDL_VERSION
99 #endif
100 #endif
101
102
103
104 #ifdef HAVE_OPENSSL
105 /* Work around RedHat's b0rken OpenSSL includes */
106 #define OPENSSL_NO_KRB5
107 #include <openssl/ssl.h>
108 #include <openssl/err.h>
109 #include <openssl/rand.h>
110 #endif
111
112 #define CALENDAR_ROOM_NAME      "Calendar"
113 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
114
115 #define SIZ                     4096            /* generic buffer size */
116
117 #define TRACE fprintf(stderr, "Checkpoint: %s, %d\n", __FILE__, __LINE__)
118
119 #define SLEEPING                180             /* TCP connection timeout */
120 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
121 #define PORT_NUM                2000            /* port number to listen on */
122 #define SERVER                  "WebCit v6.71"  /* who's in da house */
123 #define DEVELOPER_ID            0
124 #define CLIENT_ID               4
125 #define CLIENT_VERSION          671             /* This version of WebCit */
126 #define MINIMUM_CIT_VERSION     671             /* min required Citadel ver. */
127 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
128 #define DEFAULT_PORT            "504"
129 #define LB                      (1)             /* Internal escape chars */
130 #define RB                      (2)
131 #define QU                      (3)
132 #define TARGET                  "webcit01"      /* Target for inline URL's */
133 #define HOUSEKEEPING            15              /* Housekeeping frequency */
134 #define MIN_WORKER_THREADS      5
135 #define MAX_WORKER_THREADS      250
136 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
137
138 #define USERCONFIGROOM          "My Citadel Config"
139 #define DEFAULT_MAXMSGS         20
140
141
142 /*
143  * Room flags (from Citadel)
144  *
145  * bucket one...
146  */
147 #define QR_PERMANENT    1               /**< Room does not purge              */
148 #define QR_INUSE            2           /**< Set if in use, clear if avail    */
149 #define QR_PRIVATE          4           /**< Set for any type of private room */
150 #define QR_PASSWORDED   8               /**< Set if there's a password too    */
151 #define QR_GUESSNAME    16              /**< Set if it's a guessname room     */
152 #define QR_DIRECTORY    32              /**< Directory room                */
153 #define QR_UPLOAD       64              /**< Allowed to upload          */
154 #define QR_DOWNLOAD     128                 /**< Allowed to download          */
155 #define QR_VISDIR       256                 /**< Visible directory              */
156 #define QR_ANONONLY     512                 /**< Anonymous-Only room          */
157 #define QR_ANONOPT      1024            /**< Anonymous-Option room          */
158 #define QR_NETWORK      2048            /**< Shared network room              */
159 #define QR_PREFONLY     4096            /**< Preferred status needed to enter */
160 #define QR_READONLY     8192            /**< Aide status required to post     */
161 #define QR_MAILBOX      16384           /**< Set if this is a private mailbox */
162
163 /**
164  * bucket two...
165  */
166 #define QR2_SYSTEM      1               /**< System room; hide by default     */
167 #define QR2_SELFLIST    2               /**< Self-service mailing list mgmt   */
168
169 /**
170  * user/room access
171  */
172 #define UA_KNOWN        2
173 #define UA_GOTOALLOWED  4
174 #define UA_HASNEWMSGS   8
175 #define UA_ZAPPED       16
176
177
178 /**
179  * User flags (from Citadel)
180  */
181 #define US_NEEDVALID    1               /**< User needs to be validated       */
182 #define US_PERM         4                   /**< Permanent user                   */
183 #define US_LASTOLD      16                  /**< Print last old message with new  */
184 #define US_EXPERT       32                  /**< Experienced user                   */
185 #define US_UNLISTED     64                  /**< Unlisted userlog entry           */
186 #define US_NOPROMPT     128                 /**< Don't prompt after each message  */
187 #define US_PROMPTCTL    256             /**< <N>ext & <S>top work at prompt   */
188 #define US_DISAPPEAR    512             /**< Use "disappearing msg prompts"   */
189 #define US_REGIS        1024            /**< Registered user                  */
190 #define US_PAGINATOR    2048    /**< Pause after each screen of text  */
191 #define US_INTERNET     4096            /**< Internet mail privileges         */
192 #define US_FLOORS       8192            /**< User wants to see floors         */
193 #define US_COLOR        16384           /**< User wants ANSI color support    */
194 #define US_USER_SET     (US_LASTOLD | US_EXPERT | US_UNLISTED | \
195                         US_NOPROMPT | US_DISAPPEAR | US_PAGINATOR | \
196                         US_FLOORS | US_COLOR | US_PROMPTCTL )
197
198
199
200 /** \brief http request struct ??? */
201 struct httprequest {
202         struct httprequest *next;  /**< the next request in the list ??? */
203         char line[SIZ];            /**< the request line ??? */
204 };
205
206 /**
207  * \brief contents of an url???
208  */
209 struct urlcontent {
210         struct urlcontent *next;   /**< the next url in the list */ 
211         char url_key[32];          /**< the url directory part */
212         char *url_data;            /**< the url data part ??? */
213 };
214
215 /**
216  * \brief information about us ???
217  */ 
218 struct serv_info {
219         int serv_pid;              /**< Our process id */
220         char serv_nodename[32];    /**< How is the name of this citadel */
221         char serv_humannode[64];   /**< How is the human readable name of this citadel */
222         char serv_fqdn[64];                /**< How is our Full quallified Domain Name (uncensored.citadel.org ie.e  */
223         char serv_software[64];    /**< What version does our connected citadel server use */
224         int serv_rev_level;                /**< Whats the citadel server revision */
225         char serv_bbs_city[64];    /**< Where is the dialin node */
226         char serv_sysadm[64];      /**< Who's to blame on trouble */
227         char serv_moreprompt[SIZ]; /**< Whats the commandline textprompt */
228         int serv_ok_floors;                /**< what??? */
229         int serv_supports_ldap;    /**< is the server linked against an ldap tree for adresses? */
230 };
231
232
233
234 /**
235  * \brief This struct holds a list of rooms for \\\<G\\\>oto operations.
236  */
237 struct march {
238         struct march *next;       /**< pointer to next in linked list */
239         char march_name[128];     /**< function name ??? */
240         int march_floor;          /**< floor number */
241         int march_order;          /**< order number???*/
242 };
243
244 /* *
245  * \brief This struct holds a list of rooms for client display.
246  * (oooh, a tree!) (double linked list? )
247  */
248 struct roomlisting {
249         struct roomlisting *lnext;/**< pointer to the next roomlisting */
250         struct roomlisting *rnext;/**< pointer to the previous roomlisting */
251         char rlname[128];                 /**< the userprintable roomname */
252         unsigned rlflags;                 /**< the room flags */
253         int rlfloor;                      /**< the floor it reside on (citadel server room number???)*/
254         int rlorder;              /**< the order to print it???*/
255 };
256
257
258
259 /**
260  * \brief Dynamic content for variable substitution in templates
261  */
262 struct wcsubst {
263         struct wcsubst *next;       /**< next item in the list */  
264         int wcs_type;                       /**< which type of ??? */
265         char wcs_key[32];                   /**< ??? what?*/
266         void *wcs_value;                    /**< ???? what?*/
267         void (*wcs_function)(void); /**< funcion hook ???*/
268 };
269
270 /**
271  * \brief Values for wcs_type
272  */
273 enum {
274         WCS_STRING,   /**< its a string */
275         WCS_FUNCTION, /**< its a function callback */
276         WCS_SERVCMD   /**< its a command to send to the citadel server */
277 };
278
279 /**
280  * \brief mail attachment ???
281  */
282 struct wc_attachment {
283         struct wc_attachment *next;/**< pointer to next in list */
284         size_t length;                     /**< length of the contenttype */
285         char content_type[SIZ];    /**< the content itself ???*/
286         char filename[SIZ];                /**< the filename hooked to this content ??? */
287         char *data;                /**< the data pool; aka this content */
288 };
289
290 /**
291  * \brief message summary structure. ???
292  */
293 struct message_summary {
294         time_t date;        /**< its creation date */
295         long msgnum;            /**< the message number on the citadel server */
296         char from[128];         /**< the author */
297         char to[128];           /**< the recipient */
298         char subj[128];         /**< the title / subject */
299         int hasattachments;     /**< does it have atachments? */
300         int is_new;         /**< is it yet read? */
301 };
302
303 /**
304  * \brief  Data structure for roomlist-to-folderlist conversion 
305  */
306 struct folder {
307         int floor;      /**< which floor is it on */
308         char room[SIZ]; /**< which roomname ??? */
309         char name[SIZ]; /**< which is its own name??? */
310         int hasnewmsgs; /**< are there unread messages inside */
311         int is_mailbox; /**< is it a mailbox?  */
312         int selectable; /**< can we select it ??? */
313         int view;       /**< whats its default view? inbox/calendar.... */
314 };
315
316 /**
317  * \brief One of these is kept for each active Citadel session.
318  * HTTP transactions are bound to on e at a time.
319  */
320 struct wcsession {
321         struct wcsession *next;                       /**< Linked list */
322         int wc_session;                                   /**< WebCit session ID */
323         char wc_username[128];                    /**< ??? todo */
324         char wc_fullname[128];                            /**< ??? todo */
325         char wc_password[128];                            /**< ??? todo */
326         char wc_roomname[256];                            /**< ??? todo */
327         int connected;                                            /**< ??? todo */
328         int logged_in;                                            /**< ??? todo */
329         int axlevel;                                              /**< ??? todo */
330         int is_aide;                                              /**< ??? todo */
331         int is_room_aide;                                         /**< ??? todo */
332         int http_sock;                                            /**< ??? todo */
333         int serv_sock;                                            /**< ??? todo */
334         int chat_sock;                                            /**< ??? todo */
335         unsigned room_flags;                              /**< ??? todo */
336         int wc_view;                                              /**< ??? todo */
337         int wc_default_view;                              /**< ??? todo */
338         int wc_is_trash;                                          /**< ??? todo */
339         int wc_floor;                                             /**< ??? todo */
340         char ugname[128];                                         /**< ??? todo */
341         long uglsn;                                                       /**< ??? todo */
342         int upload_length;                                        /**< ??? todo */
343         char *upload;                                             /**< ??? todo */
344         char upload_filename[PATH_MAX];           /**< ??? todo */
345         char upload_content_type[256];            /**< ??? todo */
346         int new_mail;                                             /**< ??? todo */
347         int remember_new_mail;                    /**< ??? todo */      
348         int need_regi;                                    /**< This user needs to register. */
349         int need_vali;                                    /**< New users require validation. */
350         char cs_inet_email[256];                      /**< User's preferred Internet addr. */
351         pthread_mutex_t SessionMutex;             /**< mutex for exclusive access */
352         time_t lastreq;                                   /**< Timestamp of most recent HTTP */
353         int killthis;                                     /**< Nonzero == purge this session */
354         struct march *march;                      /**< march mode room list */
355         char reply_to[512];                       /**< reply-to address */
356         long msgarr[10000];                       /**< for read operations */
357         int num_summ;                             /**< ??? todo */
358         struct message_summary *summ;             /**<  ??? todo */
359         int is_wap;                                           /**< Client is a WAP gateway */
360         struct urlcontent *urlstrings;            /**<  ??? todo */
361         struct wcsubst *vars;                     /**<   ??? todo*/
362         char this_page[512];                      /**< address of current page */
363         char http_host[512];                      /**< HTTP Host: header */
364         char *preferences;                        /**<  ??? todo */
365 #ifdef WEBCIT_WITH_CALENDAR_SERVICE                     
366         /** \brief ical???? */                                  
367         struct disp_cal {                                               
368                 icalcomponent *cal;                           /**< cal items for display */
369                 long cal_msgnum;                              /**< cal msgids for display */
370         } *disp_cal;                                                    
371         int num_cal;                              /**<  ??? todo */
372 #endif                                                                                  
373         struct wc_attachment *first_attachment;   /**<  ??? todo */
374         char ImportantMessage[SIZ];               /**<   ??? todo */
375         int ctdl_pid;                             /**< Session ID on the Citadel server */
376         char httpauth_user[256];                      /**< only for GroupDAV sessions */
377         char httpauth_pass[256];                  /**< only for GroupDAV sessions */
378         size_t burst_len;                         /**<  ??? todo */
379         char *burst;                              /**<  ??? todo */
380         int gzip_ok;                              /**< Nonzero if Accept-encoding: gzip */
381         int is_mailbox;                           /**< the current room is a private mailbox */
382         struct folder *cache_fold;                /**< cache the iconbar room list */
383         int cache_max_folders;                    /**<  ??? todo */
384         int cache_num_floors;                     /**<  ??? todo */
385         time_t cache_timestamp;                   /**<  ??? todo */
386         int current_iconbar;                      /**< What's currently in the iconbar? */
387         char floordiv_expanded[32];               /**< which floordiv currently expanded */
388         int selected_language;                    /**< Language selected by user */
389         time_t last_pager_check;                  /**< last time we polled for instant msgs */
390 };
391
392 /** values for WC->current_iconbar */
393 enum {
394         current_iconbar_menu,     /**< view the icon menue */
395         current_iconbar_roomlist  /**< view the roomtree */
396 };
397
398
399 #define num_parms(source)               num_tokens(source, '|') 
400
401 /* Per-session data */
402 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
403 extern pthread_key_t MyConKey;
404
405 /* Per-thread SSL context */
406 #ifdef HAVE_OPENSSL
407 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
408 extern pthread_key_t ThreadSSL;
409 #endif
410
411 struct serv_info serv_info;
412 extern char floorlist[128][SIZ];
413 extern char *axdefs[];
414 extern char *ctdlhost, *ctdlport;
415 extern char *server_cookie;
416 extern int is_https;
417 extern int setup_wizard;
418 extern char wizard_filename[];
419 extern time_t if_modified_since;
420 extern int follow_xff;
421 void do_setup_wizard(void);
422
423 void stuff_to_cookie(char *cookie, int session,
424                         char *user, char *pass, char *room);
425 void cookie_to_stuff(char *cookie, int *session,
426                 char *user, size_t user_len,
427                 char *pass, size_t pass_len,
428                 char *room, size_t room_len);
429 void locate_host(char *, int);
430 void become_logged_in(char *, char *, char *);
431 void do_login(void);
432 void display_login(char *mesg);
433 void do_welcome(void);
434 void do_logout(void);
435 void display_main_menu(void);
436 void display_aide_menu(void);
437 void display_advanced_menu(void);
438 void slrp_highest(void);
439 void gotonext(void);
440 void ungoto(void);
441 void get_serv_info(char *, char *);
442 int uds_connectsock(char *);
443 int tcp_connectsock(char *, char *);
444 void serv_getln(char *strbuf, int bufsize);
445 void serv_puts(char *string);
446 void who(void);
447 void who_inner_div(void);
448 void fmout(char *align);
449 void pullquote_fmout(void);
450 void wDumpContent(int);
451 void serv_printf(const char *format,...);
452 char *bstr(char *key);
453 void urlesc(char *, char *);
454 void urlescputs(char *);
455 void jsesc(char *, char *);
456 void jsescputs(char *);
457 void output_headers(    int do_httpheaders,
458                         int do_htmlhead,
459                         int do_room_banner,
460                         int unset_cookies,
461                         int suppress_check,
462                         int cache);
463 void wprintf(const char *format,...);
464 void output_static(char *what);
465 void stresc(char *target, char *strbuf, int nbsp, int nolinebreaks);
466 void escputs(char *strbuf);
467 void url(char *buf);
468 void escputs1(char *strbuf, int nbsp, int nolinebreaks);
469 void msgesc(char *target, char *strbuf);
470 void msgescputs(char *strbuf);
471 int extract_int(const char *source, int parmnum);
472 long extract_long(const char *source, int parmnum);
473 void stripout(char *str, char leftboundary, char rightboundary);
474 void dump_vars(void);
475 void embed_main_menu(void);
476 void serv_read(char *buf, int bytes);
477 int haschar(char *, char);
478 void readloop(char *oper);
479 void embed_message(char *msgnum_as_string);
480 void print_message(char *msgnum_as_string);
481 void display_headers(char *msgnum_as_string);
482 void text_to_server(char *ptr, int convert_to_html);
483 void display_enter(void);
484 void post_message(void);
485 void confirm_delete_msg(void);
486 void delete_msg(void);
487 void confirm_move_msg(void);
488 void move_msg(void);
489 void userlist(void);
490 void showuser(void);
491 void display_page(void);
492 void page_user(void);
493 void do_chat(void);
494 void display_private(char *rname, int req_pass);
495 void goto_private(void);
496 void zapped_list(void);
497 void display_zap(void);
498 void zap(void);
499 void display_success(char *);
500 void authorization_required(const char *message);
501 void display_entroom(void);
502 void entroom(void);
503 void display_editroom(void);
504 void netedit(void);
505 void editroom(void);
506 void display_whok(void);
507 void do_invt_kick(void);
508 void server_to_text(void);
509 void save_edit(char *description, char *enter_cmd, int regoto);
510 void display_edit(char *description, char *check_cmd,
511                   char *read_cmd, char *save_cmd, int with_room_banner);
512 int gotoroom(char *gname);
513 void confirm_delete_room(void);
514 void delete_room(void);
515 void validate(void);
516 void display_graphics_upload(char *, char *, char *);
517 void do_graphics_upload(char *upl_cmd);
518 void serv_read(char *buf, int bytes);
519 void serv_gets(char *strbuf);
520 void serv_write(char *buf, int nbytes);
521 void serv_puts(char *string);
522 void serv_printf(const char *format,...);
523 void load_floorlist(void);
524 void display_reg(int);
525 void display_changepw(void);
526 void changepw(void);
527 void display_edit_node(void);
528 void edit_node(void);
529 void display_netconf(void);
530 void display_confirm_delete_node(void);
531 void delete_node(void);
532 void display_add_node(void);
533 void add_node(void);
534 void terminate_session(void);
535 void edit_me(void);
536 void display_siteconfig(void);
537 void siteconfig(void);
538 void display_generic(void);
539 void do_generic(void);
540 void ajax_servcmd(void);
541 void display_menubar(int);
542 void smart_goto(char *);
543 void worker_entry(void);
544 void session_loop(struct httprequest *);
545 void fmt_date(char *buf, time_t thetime, int brief);
546 void fmt_time(char *buf, time_t thetime);
547 void httpdate(char *buf, time_t thetime);
548 time_t httpdate_to_timestamp(const char *buf);
549 void end_webcit_session(void);
550 void page_popup(void);
551 void chat_recv(void);
552 void chat_send(void);
553 void http_redirect(char *);
554 void clear_local_substs(void);
555 void svprintf(char *keyname, int keytype, const char *format,...);
556 void svcallback(char *keyname, void (*fcn_ptr)() );
557 void do_template(void *templatename);
558 int lingering_close(int fd);
559 char *memreadline(char *start, char *buf, int maxlen);
560 int num_tokens (char *source, char tok);
561 void extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
562 void remove_token(char *source, int parmnum, char separator);
563 char *load_mimepart(long msgnum, char *partnum);
564 int pattern2(char *search, char *patn);
565 void do_edit_vcard(long, char *, char *);
566 void edit_vcard(void);
567 void submit_vcard(void);
568 void striplt(char *);
569 void select_user_to_edit(char *message, char *preselect);
570 void delete_user(char *);
571 void display_edituser(char *who, int is_new);
572 void create_user(void);
573 void edituser(void);
574 void do_change_view(int);
575 void change_view(void);
576 void folders(void);
577 void load_preferences(void);
578 void save_preferences(void);
579 void get_preference(char *key, char *value, size_t value_len);
580 void set_preference(char *key, char *value, int save_to_server);
581 void knrooms(void);
582 int is_msg_in_mset(char *mset, long msgnum);
583 char *safestrncpy(char *dest, const char *src, size_t n);
584 void display_addressbook(long msgnum, char alpha);
585 void offer_start_page(void);
586 void convenience_page(char *titlebarcolor, char *titlebarmsg, char *messagetext);
587 void change_start_page(void);
588 void output_html(char *);
589 void display_floorconfig(char *);
590 void delete_floor(void);
591 void create_floor(void);
592 void rename_floor(void);
593 void do_listsub(void);
594 void toggle_self_service(void);
595 void summary(void);
596 void summary_inner_div(void);
597 ssize_t write(int fd, const void *buf, size_t count);
598 void cal_process_attachment(char *part_source, long msgnum, char *cal_partnum);
599 void display_calendar(long msgnum);
600 void display_task(long msgnum);
601 void display_note(long msgnum);
602 void do_calendar_view(void);
603 void do_tasks_view(void);
604 void free_calendar_buffer(void);
605 void calendar_summary_view(void);
606 int load_msg_ptrs(char *servcmd, int with_headers);
607 void CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen);
608 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
609 void free_attachments(struct wcsession *sess);
610 void set_room_policy(void);
611 void display_inetconf(void);
612 void save_inetconf(void);
613 void generate_uuid(char *);
614 void CtdlMakeTempFileName(char *, int);
615 void display_preferences(void);
616 void set_preferences(void);
617 void recp_autocomplete(char *);
618 void begin_ajax_response(void);
619 void end_ajax_response(void);
620 void initialize_viewdefs(void);
621 void initialize_axdefs(void);
622 void list_all_rooms_by_floor(char *viewpref);
623
624 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
625 void display_edit_task(void);
626 void save_task(void);
627 void display_edit_event(void);
628 void save_event(void);
629 void display_icaltimetype_as_webform(struct icaltimetype *, char *);
630 void icaltime_from_webform(struct icaltimetype *result, char *prefix);
631 void icaltime_from_webform_dateonly(struct icaltimetype *result, char *prefix);
632 void display_edit_individual_event(icalcomponent *supplied_vtodo, long msgnum);
633 void save_individual_event(icalcomponent *supplied_vtodo, long msgnum);
634 void respond_to_request(void);
635 void handle_rsvp(void);
636 void ical_dezonify(icalcomponent *cal);
637 void partstat_as_string(char *buf, icalproperty *attendee);
638 icalcomponent *ical_encapsulate_subcomponent(icalcomponent *subcomp);
639 void check_attendee_availability(icalcomponent *supplied_vevent);
640 void do_freebusy(char *req);
641 #endif
642
643 #ifdef ENABLE_NLS
644 void initialize_locales(void);
645 #endif
646
647 extern char *months[];
648 extern char *days[];
649 void read_server_binary(char *buffer, size_t total_len);
650 char *read_server_text(void);
651 int goto_config_room(void);
652 long locate_user_vcard(char *username, long usernum);
653 void sleeeeeeeeeep(int);
654 void http_transmit_thing(char *thing, size_t length, char *content_type,
655                          int is_static);
656 void unescape_input(char *buf);
657 void do_iconbar(void);
658 void do_iconbar_roomlist(void);
659 void do_selected_iconbar(void);
660 void display_customize_iconbar(void);
661 void commit_iconbar(void);
662 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
663 void spawn_another_worker_thread(void);
664 void display_rss(char *roomname, char *request_method);
665 void set_floordiv_expanded(char *which_floordiv);
666 void offer_languages(void);
667 void set_selected_language(char *);
668 void go_selected_language(void);
669 void stop_selected_language(void);
670 void httplang_to_locale(char *LocaleString);
671 void tabbed_dialog(int num_tabs, char *tabnames[]);
672 void begin_tab(int tabnum, int num_tabs);
673 void end_tab(int tabnum, int num_tabs);
674 void display_wiki_page(void);
675
676 void embed_room_banner(char *, int);
677
678 /* navbar types that can be passed to embed_room_banner */
679 enum {
680         navbar_none,
681         navbar_default
682 };
683
684
685 #ifdef HAVE_OPENSSL
686 void init_ssl(void);
687 void endtls(void);
688 void ssl_lock(int mode, int n, const char *file, int line);
689 int starttls(int sock);
690 extern SSL_CTX *ssl_ctx;  
691 int client_read_ssl(char *buf, int bytes, int timeout);
692 void client_write_ssl(char *buf, int nbytes);
693 #endif
694
695 #ifdef HAVE_ZLIB
696 #include <zlib.h>
697 int ZEXPORT compress_gzip(Bytef * dest, uLongf * destLen,
698                           const Bytef * source, uLong sourceLen, int level);
699 #endif
700
701 #ifdef HAVE_ICONV
702 void utf8ify_rfc822_string(char *buf);
703 #endif
704
705 void begin_burst(void);
706 void end_burst(void);
707
708 extern char *ascmonths[];
709 extern char *hourname[];
710 void http_datestring(char *buf, size_t n, time_t xtime);
711
712 /* Views (from citadel.h) */
713 #define VIEW_BBS                0       /* Traditional Citadel BBS view */
714 #define VIEW_MAILBOX            1       /* Mailbox summary */
715 #define VIEW_ADDRESSBOOK        2       /* Address book view */
716 #define VIEW_CALENDAR           3       /* Calendar view */
717 #define VIEW_TASKS              4       /* Tasks view */
718 #define VIEW_NOTES              5       /* Notes view */
719 #define VIEW_WIKI               6       /* Wiki view */
720
721
722 /* These should be empty, but we have them for testing */
723 #define DEFAULT_HTTPAUTH_USER   ""
724 #define DEFAULT_HTTPAUTH_PASS   ""
725