Mailing list header changes (fuck you Google)
[citadel.git] / webcit / webcit.h
1 /*
2  * Copyright (c) 1987-2019 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License version 3.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  */
12
13 #include "sysdep.h"
14 #include <sys/select.h>
15 #include <ctype.h>
16 #include <stdlib.h>
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
20 #include <stdio.h>
21 #ifdef HAVE_FCNTL_H
22 #include <fcntl.h>
23 #endif
24 #include <signal.h>
25 #include <sys/types.h>
26 #include <sys/wait.h>
27 #include <sys/socket.h>
28 #include <sys/stat.h>
29 #ifdef HAVE_LIMITS_H
30 #include <limits.h>
31 #endif
32 #include <sys/socket.h>
33 #include <netinet/in.h>
34 #include <arpa/inet.h>
35 #include <netdb.h>
36 #include <sys/un.h>
37 #include <sys/poll.h>
38 #include <string.h>
39 #include <pwd.h>
40 #include <errno.h>
41 #include <stdarg.h>
42 #include <pthread.h>
43 #include <signal.h>
44 #include <syslog.h>
45 #include <sys/utsname.h>
46 #include <expat.h>
47 #include <libcitadel.h>
48
49 #ifdef HAVE_ICONV
50 #include <iconv.h>
51 #endif
52
53 #ifdef ENABLE_NLS
54 #ifdef HAVE_XLOCALE_H
55 #include <xlocale.h>
56 #endif
57 #include <libintl.h>
58 #include <locale.h>
59 #define _(string)       gettext(string)
60 #else
61 #define _(string)       (string)
62 #endif
63
64 #define DO_DBG_QR 0
65 #define DBG_QR(x) if(DO_DBG_QR) _DBG_QR(x)
66 #define DBG_QR2(x) if(DO_DBG_QR) _DBG_QR2(x)
67
68 #include <zlib.h>
69
70 #include <libical/ical.h>
71
72 #undef PACKAGE
73 #undef VERSION
74 #undef PACKAGE_NAME
75 #undef PACKAGE_STRING
76 #undef PACKAGE_TARNAME
77 #undef PACKAGE_VERSION
78 #undef PACKAGE_BUGREPORT
79
80 typedef struct wcsession wcsession;
81
82 #include "sysdep.h"
83
84 #include "subst.h"
85 #include "messages.h"
86 #include "paramhandling.h"
87 #include "roomops.h"
88 #include "preferences.h"
89
90 #include "tcp_sockets.h"
91 #include "utils.h"
92 #ifdef HAVE_OPENSSL
93 /* Work around RedHat's b0rken OpenSSL includes */
94 #define OPENSSL_NO_KRB5
95 #include <openssl/ssl.h>
96 #include <openssl/err.h>
97 #include <openssl/rand.h>
98 extern char *ssl_cipher_list;
99 #define DEFAULT_SSL_CIPHER_LIST "DEFAULT"       /* See http://openssl.org/docs/apps/ciphers.html */
100 #endif
101
102 #if SIZEOF_SIZE_T == SIZEOF_INT 
103 #define SIZE_T_FMT "%d"
104 #else
105 #define SIZE_T_FMT "%ld"
106 #endif
107
108 #if SIZEOF_LONG_UNSIGNED_INT == SIZEOF_INT
109 #define ULONG_FMT "%d"
110 #else
111 #define ULONG_FMT "%ld"
112 #endif
113
114 #define CALENDAR_ROOM_NAME      "Calendar"
115 #define PRODID "-//Citadel//NONSGML Citadel Calendar//EN"
116
117 #define SIZ                     4096            /* generic buffer size */
118
119 #define TRACE syslog(LOG_DEBUG, "\033[3%dmCHECKPOINT: %s:%d\033[0m", ((__LINE__%6)+1), __FILE__, __LINE__)
120
121 #ifdef UNDEF_MEMCPY
122 #undef memcpy
123 #endif
124
125 #define SLEEPING                180             /* TCP connection timeout */
126 #define WEBCIT_TIMEOUT          900             /* WebCit session timeout */
127 #define PORT_NUM                2000            /* port number to listen on */
128 #define DEVELOPER_ID            0
129 #define CLIENT_ID               4
130 #define CLIENT_VERSION          925             /* This version of WebCit */
131 #define MINIMUM_CIT_VERSION     924             /* Minimum required version of Citadel server */
132 #define LIBCITADEL_MIN          924             /* Minimum required version of libcitadel */
133 #define DEFAULT_HOST            "localhost"     /* Default Citadel server */
134 #define DEFAULT_PORT            "504"
135 #define TARGET                  "webcit01"      /* Window target for inline URL's */
136 #define HOUSEKEEPING            15              /* Housekeeping frequency */
137 #define MAX_WORKER_THREADS      250
138 #define LISTEN_QUEUE_LENGTH     100             /* listen() backlog queue */
139
140 #define USERCONFIGROOM          "My Citadel Config"
141 #define DEFAULT_MAXMSGS         20
142
143 #ifdef LIBCITADEL_VERSION_NUMBER
144 #if LIBCITADEL_VERSION_NUMBER < LIBCITADEL_MIN
145 #error libcitadel is too old.  Please upgrade it before continuing.
146 #endif
147 #endif
148
149 #define SRV_STATUS_MSG(ServerLineBuf) (ChrPtr(ServerLineBuf) + 4), (StrLength(ServerLineBuf) - 4)
150 #define MAJORCODE(a) (((int)(a / 100) ) * 100)
151
152 #define LISTING_FOLLOWS 100
153 #define CIT_OK          200     
154 #define MORE_DATA       300
155 #define SEND_LISTING    400
156 #define ERROR           500
157 #define BINARY_FOLLOWS  600
158 #define SEND_BINARY     700
159 #define START_CHAT_MODE 800
160 #define ASYNC_MSG       900
161
162 #define MINORCODE(a) (a % 100)
163 #define ASYNC_GEXP                      02      
164 #define INTERNAL_ERROR                  10      
165 #define TOO_BIG                         11      
166 #define ILLEGAL_VALUE                   12      
167 #define NOT_LOGGED_IN                   20      
168 #define CMD_NOT_SUPPORTED               30      
169 #define SERVER_SHUTTING_DOWN            31      
170 #define PASSWORD_REQUIRED               40      
171 #define ALREADY_LOGGED_IN               41      
172 #define USERNAME_REQUIRED               42      
173 #define HIGHER_ACCESS_REQUIRED          50      
174 #define MAX_SESSIONS_EXCEEDED           51      
175 #define RESOURCE_BUSY                   52      
176 #define RESOURCE_NOT_OPEN               53      
177 #define NOT_HERE                        60      
178 #define INVALID_FLOOR_OPERATION         61      
179 #define NO_SUCH_USER                    70      
180 #define FILE_NOT_FOUND                  71      
181 #define ROOM_NOT_FOUND                  72      
182 #define NO_SUCH_SYSTEM                  73      
183 #define ALREADY_EXISTS                  74      
184 #define MESSAGE_NOT_FOUND               75
185
186 /*
187  * NLI is the string that shows up in a who's online listing for sessions
188  * that are active but do not (yet) have a user logged in.
189  */
190 #define NLI     "(not logged in)"
191
192 /*
193  * Expiry policy for the autopurger
194  */
195
196 typedef struct __ExpirePolicy {
197         int expire_mode;
198         int expire_value;
199 } ExpirePolicy;
200
201 /*
202  * Linked list of session variables encoded in an x-www-urlencoded content type
203  */
204 typedef struct urlcontent urlcontent;
205 struct urlcontent {
206         char url_key[32];               /* key */
207         long klen;
208         StrBuf *url_data;               /* value */
209         HashList *sub;
210 };
211
212 /*
213  * Information about the Citadel server to which we are connected
214  */ 
215 typedef struct _serv_info {
216         int serv_pid;                   /* Process ID of the Citadel server */
217         StrBuf *serv_nodename;          /* Node name of the Citadel server */
218         StrBuf *serv_humannode;         /* Juman readable node name of the Citadel server */
219         StrBuf *serv_fqdn;              /* Fully qualified Domain Name (such as uncensored.citadel.org) */
220         StrBuf *serv_software;          /* Free form text description of the server software in use */
221         int serv_rev_level;             /* Server version number (times 100) */
222         StrBuf *serv_bbs_city;          /* Geographic location of the Citadel server */
223         StrBuf *serv_sysadm;            /* Name of system administrator */
224         int serv_supports_ldap;         /* is the server linked against an ldap tree for adresses? */
225         int serv_newuser_disabled;      /* Has the server disabled self-service new user creation? */
226         StrBuf *serv_default_cal_zone;  /* Default timezone for unspecified calendar items */
227         int serv_supports_sieve;        /* Server supports Sieve mail filtering */
228         int serv_fulltext_enabled;      /* Full text index is enabled */
229         StrBuf *serv_svn_revision;      /* svn or git revision of the server */
230         int serv_supports_openid;       /* Server supports authentication via OpenID */
231         int serv_supports_guest;        /* Server supports unauthenticated guest logins */
232 } ServInfo;
233
234
235 typedef struct _disp_cal {                                      
236         icalcomponent *cal;             /* cal items for display */
237         long cal_msgnum;                /* cal msgids for display */
238         char *from;                     /* owner of this component */
239         int unread;                     /* already seen by the user? */
240
241         time_t event_start;
242         time_t event_end;
243
244         int multi_day_event;
245         int is_repeat;
246         icalcomponent *SortBy;          /* cal items for display */
247         icalproperty_status Status;
248 } disp_cal;                                             
249
250 typedef struct _IcalKindEnumMap {
251         const char *Name;
252         long NameLen;
253         icalproperty_kind map;
254 } IcalKindEnumMap;
255 typedef struct _IcalMethodEnumMap {
256         const char *Name;
257         long NameLen;
258         icalproperty_method map;
259 } IcalMethodEnumMap;
260
261
262 #define AJAX (1<<0)
263 #define ANONYMOUS (1<<1)
264 #define NEED_URL (1<<2)
265 #define XHTTP_COMMANDS (1<<3)
266 #define BOGUS (1<<4)
267 #define URLNAMESPACE (1<<4)
268 #define LOGCHATTY (1<<5)
269 #define COOKIEUNNEEDED (1<<6)
270 #define ISSTATIC (1<<7)
271 #define FORCE_SESSIONCLOSE (1<<8)
272 #define PARSE_REST_URL (1<<9)
273 #define PROHIBIT_STARTPAGE (1<<10)
274
275
276 #define DATEFMT_FULL 0
277 #define DATEFMT_BRIEF 1
278 #define DATEFMT_RAWDATE 2
279 #define DATEFMT_LOCALEDATE 3
280 long webcit_fmt_date(char *buf, size_t siz, time_t thetime, int Format);
281
282
283 typedef enum _RESTDispatchID {
284         ExistsID,
285         PutID,
286         DeleteID
287 } RESTDispatchID;
288
289 typedef int (*WebcitRESTDispatchID)(RESTDispatchID WhichAction, int IgnoreFloor);
290 typedef void (*WebcitHandlerFunc)(void);
291 typedef struct  _WebcitHandler{
292         WebcitHandlerFunc F;
293         WebcitRESTDispatchID RID;
294         long Flags;
295         StrBuf *Name;
296         StrBuf *DisplayName;
297 } WebcitHandler;
298
299 void WebcitAddUrlHandler(const char * UrlString, long UrlSLen, const char *DisplayName, long dslen, WebcitHandlerFunc F, long Flags);
300
301 typedef struct _headereval {
302         ExamineMsgHeaderFunc evaluator;
303         int Type;
304 } headereval;
305
306 struct attach_link {
307         char partnum[32];
308         char html[1024];
309 };
310
311 enum {
312         eUp,
313         eDown,
314         eNone
315 };
316
317 enum {
318         eGET,
319         ePOST,
320         eOPTIONS,
321         ePROPFIND,
322         ePUT,
323         eDELETE,
324         eHEAD,
325         eMOVE,
326         eCOPY,
327         eREPORT,
328         eNONE
329 };
330 extern const char *ReqStrs[eNONE];
331
332 #define NO_AUTH 0
333 #define AUTH_COOKIE 1
334 #define AUTH_BASIC 2
335
336 typedef struct _HdrRefs {
337         long eReqType;                          /* HTTP method */
338         int desired_session;
339         int SessionKey;
340
341         int got_auth;
342         int DontNeedAuth;
343         long ContentLength;
344         time_t if_modified_since;
345         int gzip_ok;                            /* Nonzero if Accept-encoding: gzip */
346         int prohibit_caching;
347         int dav_depth;
348         int Static;
349
350         /* these are references into Hdr->HTTPHeaders, so we don't need to free them. */
351         StrBuf *ContentType;
352         StrBuf *RawCookie;
353         StrBuf *ReqLine;
354         StrBuf *browser_host;
355         StrBuf *browser_language;
356         StrBuf *user_agent;
357         StrBuf *plainauth;
358         StrBuf *dav_ifmatch;
359
360         const WebcitHandler *Handler;
361 } HdrRefs;
362
363 typedef struct _ParsedHttpHdrs {
364         int http_sock;                          /* HTTP server socket */
365         long HaveRange;
366         long RangeStart;
367         long RangeTil;
368         long TotalBytes;
369         const char *Pos;
370         StrBuf *ReadBuf;
371
372         StrBuf *c_username;
373         StrBuf *c_password;
374         StrBuf *c_roomname;
375         StrBuf *c_language;
376         StrBuf *this_page;                      /* URL of current page */
377         StrBuf *PlainArgs; 
378         StrBuf *HostHeader;
379
380         HashList *urlstrings;                   /* variables passed to webcit in a URL */
381         HashList *HTTPHeaders;                  /* the headers the client sent us */
382         int nWildfireHeaders;                   /* how many wildfire headers did we already send? */
383
384         HdrRefs HR;
385 } ParsedHttpHdrs;
386
387 /*
388  * One of these is kept for each active Citadel session.
389  * HTTP transactions are bound to one at a time.
390  */
391 struct wcsession {
392 /* infrastructural members */
393         wcsession *next;                        /* Linked list */
394         pthread_mutex_t SessionMutex;           /* mutex for exclusive access */
395         int wc_session;                         /* WebCit session ID */
396         int killthis;                           /* Nonzero == purge this session */
397         int ctdl_pid;                           /* Session ID on the Citadel server */
398         int nonce;                              /* session nonce (to prevent session riding) */
399         int inuse;                              /* set to nonzero if bound to a running thread */
400         int isFailure;                          /* Http 2xx or 5xx? */
401
402 /* Session local Members */
403         int serv_sock;                          /* Client socket to Citadel server */
404         StrBuf *ReadBuf;                        /* linebuffered reads from the server */
405         StrBuf *MigrateReadLineBuf;             /* here we buffer legacy server read stuff */
406         const char *ReadPos;                    /* whats our read position in ReadBuf? */
407         int last_chat_seq;                      /* When in chat - last message seq# we saw */
408         time_t lastreq;                         /* Timestamp of most recent HTTP */
409         time_t last_pager_check;                /* last time we polled for instant msgs */
410         ServInfo *serv_info;                    /* Information about the citserver we're connected to */
411         StrBuf *PushedDestination;              /* Where to go after login, registration, etc. */
412
413 /* Request local Members */
414         StrBuf *CLineBuf;                       /* linebuffering client stuff */
415         ParsedHttpHdrs *Hdr;
416         StrBuf *WBuf;                           /* Our output buffer */
417         StrBuf *HBuf;                           /* Our HeaderBuffer */
418         StrBuf *WFBuf;                          /* Wildfire error logging buffer */
419         StrBuf *trailing_javascript;            /* extra javascript to be appended to page */
420         StrBuf *ImportantMsg;
421         HashList *Directory;                    /* Parts of the directory URL in snippets */
422         const Floor *CurrentFloor;              /* when Parsing REST, which floor are we on? */
423
424 /* accounting */
425         StrBuf *wc_username;                    /* login name of current user */
426         StrBuf *wc_fullname;                    /* Screen name of current user */
427         StrBuf *wc_password;                    /* Password of current user */
428         StrBuf *httpauth_pass;                  /* only for GroupDAV sessions */
429         int axlevel;                            /* this user's access level */
430         int is_aide;                            /* nonzero == this user is an Admin */
431         int connected;                          /* nonzero == we are connected to Citadel */
432         int logged_in;                          /* nonzero == we are logged in  */
433         int need_regi;                          /* This user needs to register. */
434         int need_vali;                          /* New users require validation. */
435
436 /* Preferences */
437         StrBuf *cs_inet_email;                  /* User's preferred Internet addr. */
438         HashList *hash_prefs;                   /* WebCit preferences for this user */
439         StrBuf *DefaultCharset;                 /* Charset the user preferes */
440         int downloaded_prefs;                   /* Has the client download its prefs yet? */
441         int SavePrefsToServer;                  /* Should we save our preferences to the server at the end of the request? */
442         int selected_language;                  /* Language selected by user */
443         int time_format_cache;                  /* which timeformat does our user like? */
444
445         folder CurRoom;                         /* information about our current room */
446         const folder *ThisRoom;                 /* if REST found a room, remember it here. */
447 /* next/previous room thingabob */
448         struct march *march;                    /* march mode room list */
449         char ugname[128];                       /* where does 'ungoto' take us */
450         long uglsn;                             /* last seen message number for ungoto */
451
452 /* Uploading; mime attachments for composing messages */
453         HashList *attachments;                  /* list of attachments for 'enter message' */
454         int upload_length;                      /* content length of http-uploaded data */
455         StrBuf *upload;                         /* pointer to http-uploaded data */
456         StrBuf *upload_filename;                /* filename of http-uploaded data */
457         char upload_content_type[256];          /* content type of http-uploaded data */
458
459         int remember_new_mail;                  /* last count of new mail messages */
460
461 /* Roomiew control */
462         HashList *Floors;                       /* floors our citserver has hashed numeric for quicker access*/
463         HashList *FloorsByName;                 /* same but hashed by its name */
464         HashList *Rooms;                        /* our directory structure as loaded by LKRA */
465         HashList *summ;                         /* list of messages for mailbox summary view */
466   /** Perhaps these should be within a struct instead */
467         long startmsg;                          /* message number to start at */
468         long maxmsgs;                           /* maximum messages to display */
469         long num_displayed;                     /* number of messages actually displayed */
470         HashList *disp_cal_items;               /* sorted list of calendar items; startdate is the sort criteria. */
471
472
473         char last_chat_user[256];
474
475         StrBuf *IconTheme;                      /* Icontheme setting */
476
477 /* Iconbar controls */
478         int cache_max_folders;
479         int cache_num_floors;
480         long *IBSettingsVec;                    /* which icons should be shown / not shown? */
481         const StrBuf *floordiv_expanded;        /* which floordiv currently expanded */
482         int ib_wholist_expanded;
483         int ib_roomlist_expanded;
484
485 /* our known Sieve scripts; loaded by SIEVE:SCRIPTS iterator. */
486         HashList *KnownSieveScripts;
487
488 /* Transcoding cache buffers; used to avoid to frequent realloc */
489         StrBuf *ConvertBuf1;
490         StrBuf *ConvertBuf2;
491
492 /* cache stuff for templates. TODO: find a smarter way */
493         HashList *ServCfg;                      /* cache our server config for editing */
494         HashList *InetCfg;                      /* Our inet server config for editing */
495         ExpirePolicy Policy[maxpolicy];
496
497 };
498
499
500 typedef void (*Header_Evaluator)(StrBuf *Line, ParsedHttpHdrs *hdr);
501
502 typedef struct _HttpHeader {
503         Header_Evaluator H;
504         StrBuf *Val;
505         int HaveEvaluator;
506 } OneHttpHeader;
507
508 void RegisterHeaderHandler(const char *Name, long Len, Header_Evaluator F);
509
510
511 enum {
512         S_SHUTDOWN,
513         S_SPAWNER,
514         MAX_SEMAPHORES
515 };
516
517 #ifndef num_parms
518 #define num_parms(source)               num_tokens(source, '|') 
519 #endif
520
521 #define site_prefix     (WC ? (WC->Hdr->HostHeader) : NULL)
522
523 /* Per-session data */
524 #define WC ((struct wcsession *)pthread_getspecific(MyConKey))
525 extern pthread_key_t MyConKey;
526
527 /* Per-thread SSL context */
528 #ifdef HAVE_OPENSSL
529 #define THREADSSL ((SSL *)pthread_getspecific(ThreadSSL))
530 extern pthread_key_t ThreadSSL;
531 extern char ctdl_key_dir[PATH_MAX];
532 extern char file_crpt_file_key[PATH_MAX];
533 extern char file_crpt_file_csr[PATH_MAX];
534 extern char file_crpt_file_cer[PATH_MAX];
535
536 void init_ssl(void);
537 void endtls(void);
538 int starttls(int sock);
539 extern SSL_CTX *ssl_ctx;  
540 int client_read_sslbuffer(StrBuf *buf, int timeout);
541 int client_write_ssl(const StrBuf *Buf);
542 #endif
543
544 extern int is_https;
545 extern int follow_xff;
546 extern char *server_cookie;
547 extern char *ctdlhost, *ctdlport;
548 extern char *axdefs[];
549 extern int num_threads_existing;
550 extern int num_threads_executing;
551 extern int setup_wizard;
552 extern char wizard_filename[];
553
554 void InitialiseSemaphores(void);
555 void begin_critical_section(int which_one);
556 void end_critical_section(int which_one);
557
558 void CheckGZipCompressionAllowed(const char *MimeType, long MLen);
559
560 extern void do_404(void);
561 void http_redirect(const char *);
562
563
564 #ifdef UBER_VERBOSE_DEBUGGING
565 #define wc_printf(...) wcc_printf(__FILE__, __FUNCTION__, __LINE__, __VA_ARGS__)
566 void wcc_printf(const char *FILE, const char *FUNCTION, long LINE, const char *format, ...);
567 #else 
568 void wc_printf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
569 #endif
570 void hprintf(const char *format,...)__attribute__((__format__(__printf__,1,2)));
571 void CheckAuthBasic(ParsedHttpHdrs *hdr);
572 void GetAuthBasic(ParsedHttpHdrs *hdr);
573 void sleeeeeeeeeep(int);
574 size_t wc_strftime(char *s, size_t max, const char *format, const struct tm *tm);
575 void fmt_time(char *buf, size_t siz, time_t thetime);
576 void httpdate(char *buf, time_t thetime);
577 time_t httpdate_to_timestamp(StrBuf *buf);
578 void end_webcit_session(void);
579 void cookie_to_stuff(StrBuf *cookie, int *session, StrBuf *user, StrBuf *pass, StrBuf *room, StrBuf *language);
580 void locate_host(StrBuf *TBuf, int);
581 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response);
582 void display_login(void);
583 void display_openids(void);
584 void display_default_landing_page(void);
585 void do_welcome(void);
586 void display_reg(int during_login);
587 void display_main_menu(void);
588 void display_aide_menu(void);
589 void RegisterEmbeddableMimeType(const char *MimeType, long MTLen, int Priority);
590 void CreateMimeStr(void);
591 void pop_destination(void);
592 void FmOut(StrBuf *Target, const char *align, const StrBuf *Source);
593 void wDumpContent(int);
594 void PutRequestLocalMem(void *Data, DeleteHashDataFunc DeleteIt);
595 void output_headers(int do_httpheaders, int do_htmlhead, int do_room_banner, int unset_cookies, int suppress_check, int cache);
596 void cdataout(char *rawdata);
597 void url(char *buf, size_t bufsize);
598 void UrlizeText(StrBuf* Target, StrBuf *Source, StrBuf *WrkBuf);
599 void display_success(const char *successmessage);
600 void shutdown_sessions(void);
601 StrBuf *load_mimepart(long msgnum, char *partnum);
602 void MimeLoadData(wc_mime_attachment *Mime);
603 void do_edit_vcard(long msgnum, char *partnum, message_summary *VCMsg, wc_mime_attachment *VCAtt, const char *return_to, const char *force_room);
604 void select_user_to_edit(const char *preselect);
605 void convenience_page(const char *titlebarcolor, const char *titlebarmsg, const char *messagetext);
606 void output_html(const char *, int, int, StrBuf *, StrBuf *);
607 ssize_t write(int fd, const void *buf, size_t count);
608 void cal_process_attachment(wc_mime_attachment *Mime);
609 void begin_ajax_response(void);
610 void end_ajax_response(void);
611 extern char *months[];
612 extern char *days[];
613 long locate_user_vcard_in_this_room(message_summary **VCMsg, wc_mime_attachment **VCAtt);
614 void http_transmit_thing(const char *content_type, int is_static);
615 void http_transmit_headers(const char *content_type, int is_static, long is_chunked, int is_gzip);
616 long unescape_input(char *buf);
617 void check_thread_pool_size(void);
618 void StrEndTab(StrBuf *Target, int tabnum, int num_tabs);
619 void StrBeginTab(StrBuf *Target, int tabnum, int num_tabs, StrBuf **Names);
620 void StrTabbedDialog(StrBuf *Target, int num_tabs, StrBuf *tabnames[]);
621 void tabbed_dialog(int num_tabs, const char *tabnames[]);
622 void begin_tab(int tabnum, int num_tabs);
623 void end_tab(int tabnum, int num_tabs);
624 int get_time_format_cached (void);
625 void display_wiki_pagelist(void);
626 void str_wiki_index(StrBuf *);
627 HashList *GetRoomListHashLKRA(StrBuf *Target, WCTemplputParams *TP);
628 void TmplGettext(StrBuf *Target, WCTemplputParams *TP); /* actual supported locales */
629 void set_selected_language(const char *);
630 void go_selected_language(void);
631 const char *get_selected_language(void);
632 void utf8ify_rfc822_string(char **buf);
633 void begin_burst(void);
634 long end_burst(void);
635 void AppendImportantMessage(const char *pch, long len);
636 void http_datestring(char *buf, size_t n, time_t xtime);
637
638 /* These should be empty, but we have them for testing */
639 #define DEFAULT_HTTPAUTH_USER   ""
640 #define DEFAULT_HTTPAUTH_PASS   ""
641
642 /* Exit codes 101 through 109 are initialization failures so we don't want to
643  * just keep respawning indefinitely.
644  */
645 #define WC_EXIT_BIND            101     /* Can't bind to the port */
646 #define WC_EXIT_SSL             102     /* Can't initialize SSL */
647
648 #define WC_TIMEFORMAT_NONE 0
649 #define WC_TIMEFORMAT_AMPM 1
650 #define WC_TIMEFORMAT_24 2
651
652 extern int time_to_die;                 /* Nonzero if server is shutting down */
653 extern int DisableGzip;
654
655 void display_summary_page(void);
656 HashList *GetValidDomainNames(StrBuf *Target, WCTemplputParams *TP);
657 void output_error_pic(const char *ErrMsg1, const char *ErrMsg2);