4e45ea69681778d6b99d784e9cb08972e768165f
[citadel.git] / webcit / messages.c
1 /*
2  * Functions which deal with the fetching and displaying of messages.
3  *
4  * Copyright (c) 1996-2012 by the citadel.org team
5  *
6  * This program is open source software.  You can redistribute it and/or
7  * modify it under the terms of the GNU General Public License, version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "webcit.h"
16 #include "webserver.h"
17 #include "dav.h"
18 #include "calendar.h"
19
20 HashList *MsgHeaderHandler = NULL;
21 HashList *MsgEvaluators = NULL;
22 HashList *MimeRenderHandler = NULL;
23 HashList *ReadLoopHandler = NULL;
24 int dbg_analyze_msg = 0;
25
26 #define SUBJ_COL_WIDTH_PCT              50      /* Mailbox view column width */
27 #define SENDER_COL_WIDTH_PCT            30      /* Mailbox view column width */
28 #define DATE_PLUS_BUTTONS_WIDTH_PCT     20      /* Mailbox view column width */
29
30 void jsonMessageListHdr(void);
31
32 void display_enter(void);
33
34 typedef void (*MsgPartEvaluatorFunc)(message_summary *Sum, StrBuf *Buf);
35
36 typedef struct _MsgPartEvaluatorStruct {
37         MsgPartEvaluatorFunc f;
38 } MsgPartEvaluatorStruct;
39
40 void fixview()
41 {
42         /* workaround for json listview; its not useable directly */
43         if (WC->CurRoom.view == VIEW_JSON_LIST) {
44                 StrBuf *View = NewStrBuf();
45                 StrBufPrintf(View, "%d", VIEW_MAILBOX);
46                 putbstr("view", View);;
47         }
48 }
49 int load_message(message_summary *Msg, 
50                  StrBuf *FoundCharset,
51                  StrBuf **Error)
52 {
53         StrBuf *Buf;
54         StrBuf *HdrToken;
55         headereval *Hdr;
56         void *vHdr;
57         char buf[SIZ];
58         int Done = 0;
59         int state=0;
60         
61         Buf = NewStrBuf();
62         if (Msg->PartNum != NULL) {
63                 serv_printf("MSG4 %ld|%s", Msg->msgnum, ChrPtr(Msg->PartNum));
64         }
65         else {
66                 serv_printf("MSG4 %ld", Msg->msgnum);
67         }
68
69         StrBuf_ServGetln(Buf);
70         if (GetServerStatus(Buf, NULL) != 1) {
71                 *Error = NewStrBuf();
72                 StrBufAppendPrintf(*Error, "<strong>");
73                 StrBufAppendPrintf(*Error, _("ERROR:"));
74                 StrBufAppendPrintf(*Error, "</strong> %s<br>\n", &buf[4]);
75                 FreeStrBuf(&Buf);
76                 return 0;
77         }
78
79         /* begin everythingamundo table */
80         HdrToken = NewStrBuf();
81         while (!Done && StrBuf_ServGetln(Buf)>=0) {
82                 if ( (StrLength(Buf)==3) && 
83                     !strcmp(ChrPtr(Buf), "000")) 
84                 {
85                         Done = 1;
86                         if (state < 2) {
87                                 if (Msg->MsgBody->Data == NULL)
88                                         Msg->MsgBody->Data = NewStrBuf();
89                                 Msg->MsgBody->ContentType = NewStrBufPlain(HKEY("text/html"));
90                                 StrBufAppendPrintf(Msg->MsgBody->Data, "<div><i>");
91                                 StrBufAppendPrintf(Msg->MsgBody->Data, _("Empty message"));
92                                 StrBufAppendPrintf(Msg->MsgBody->Data, "</i><br><br>\n");
93                                 StrBufAppendPrintf(Msg->MsgBody->Data, "</div>\n");
94                         }
95                         break;
96                 }
97                 switch (state) {
98                 case 0:/* Citadel Message Headers */
99                         if (StrLength(Buf) == 0) {
100                                 state ++;
101                                 break;
102                         }
103                         StrBufExtract_token(HdrToken, Buf, 0, '=');
104                         StrBufCutLeft(Buf, StrLength(HdrToken) + 1);
105                         
106                         /* look up one of the examine_* functions to parse the content */
107                         if (GetHash(MsgHeaderHandler, SKEY(HdrToken), &vHdr) &&
108                             (vHdr != NULL)) {
109                                 Hdr = (headereval*)vHdr;
110                                 Hdr->evaluator(Msg, Buf, FoundCharset);
111                                 if (Hdr->Type == 1) {
112                                         state++;
113                                 }
114                         }/* TODO: 
115                         else LogError(Target, 
116                                       __FUNCTION__,  
117                                       "don't know how to handle message header[%s]\n", 
118                                       ChrPtr(HdrToken));
119                          */
120                         break;
121                 case 1:/* Message Mime Header */
122                         if (StrLength(Buf) == 0) {
123                                 state++;
124                                 if (Msg->MsgBody->ContentType == NULL)
125                                         /* end of header or no header? */
126                                         Msg->MsgBody->ContentType = NewStrBufPlain(HKEY("text/plain"));
127                                  /* usual end of mime header */
128                         }
129                         else
130                         {
131                                 StrBufExtract_token(HdrToken, Buf, 0, ':');
132                                 if (StrLength(HdrToken) > 0) {
133                                         StrBufCutLeft(Buf, StrLength(HdrToken) + 1);
134                                         /* the examine*'s know how to do with mime headers too... */
135                                         if (GetHash(MsgHeaderHandler, SKEY(HdrToken), &vHdr) &&
136                                             (vHdr != NULL)) {
137                                                 Hdr = (headereval*)vHdr;
138                                                 Hdr->evaluator(Msg, Buf, FoundCharset);
139                                         }
140                                         break;
141                                 }
142                         }
143                 case 2: /* Message Body */
144                         
145                         if (Msg->MsgBody->size_known > 0) {
146                                 StrBuf_ServGetBLOBBuffered(Msg->MsgBody->Data, Msg->MsgBody->length);
147                                 state ++;
148                                 /*/ todo: check next line, if not 000, append following lines */
149                         }
150                         else if (1){
151                                 if (StrLength(Msg->MsgBody->Data) > 0)
152                                         StrBufAppendBufPlain(Msg->MsgBody->Data, "\n", 1, 0);
153                                 StrBufAppendBuf(Msg->MsgBody->Data, Buf, 0);
154                         }
155                         break;
156                 case 3:
157                         StrBufAppendBuf(Msg->MsgBody->Data, Buf, 0);
158                         break;
159                 }
160         }
161
162         if (Msg->AllAttach == NULL)
163                 Msg->AllAttach = NewHash(1,NULL);
164         /* now we put the body mimepart we read above into the mimelist */
165         Put(Msg->AllAttach, SKEY(Msg->MsgBody->PartNum), Msg->MsgBody, DestroyMime);
166         
167         FreeStrBuf(&Buf);
168         FreeStrBuf(&HdrToken);
169         return 1;
170 }
171
172
173
174 /*
175  * I wanna SEE that message!
176  *
177  * msgnum               Message number to display
178  * printable_view       Nonzero to display a printable view
179  * section              Optional for encapsulated message/rfc822 submessage
180  */
181 int read_message(StrBuf *Target, const char *tmpl, long tmpllen, long msgnum, const StrBuf *PartNum, const StrBuf **OutMime) 
182 {
183         StrBuf *Buf;
184         StrBuf *FoundCharset;
185         HashPos  *it;
186         void *vMime;
187         message_summary *Msg = NULL;
188         void *vHdr;
189         long len;
190         const char *Key;
191         WCTemplputParams SuperTP;
192         WCTemplputParams SubTP;
193         StrBuf *Error = NULL;
194
195         memset(&SuperTP, 0, sizeof(WCTemplputParams));
196         memset(&SubTP, 0, sizeof(WCTemplputParams));
197
198         Buf = NewStrBuf();
199         FoundCharset = NewStrBuf();
200         Msg = (message_summary *)malloc(sizeof(message_summary));
201         memset(Msg, 0, sizeof(message_summary));
202         Msg->msgnum = msgnum;
203         Msg->PartNum = PartNum;
204         Msg->MsgBody =  (wc_mime_attachment*) malloc(sizeof(wc_mime_attachment));
205         memset(Msg->MsgBody, 0, sizeof(wc_mime_attachment));
206         Msg->MsgBody->msgnum = msgnum;
207
208         if (!load_message(Msg, FoundCharset, &Error)) {
209                 StrBufAppendBuf(Target, Error, 0);
210                 FreeStrBuf(&Error);
211         }
212
213         /* Extract just the content-type (omit attributes such as "charset") */
214         StrBufExtract_token(Buf, Msg->MsgBody->ContentType, 0, ';');
215         StrBufTrim(Buf);
216         StrBufLowerCase(Buf);
217
218         StackContext(NULL, &SuperTP, Msg, CTX_MAILSUM, 0, NULL);
219         {
220                 /* Locate a renderer capable of converting this MIME part into HTML */
221                 if (GetHash(MimeRenderHandler, SKEY(Buf), &vHdr) &&
222                     (vHdr != NULL)) {
223                         RenderMimeFuncStruct *Render;
224                         
225                         StackContext(&SuperTP, &SubTP, Msg->MsgBody, CTX_MIME_ATACH, 0, NULL);
226                         {
227                                 Render = (RenderMimeFuncStruct*)vHdr;
228                                 Render->f(Target, &SubTP, FoundCharset);
229                         }
230                         UnStackContext(&SubTP);
231                 }
232                 
233                 if (StrLength(Msg->reply_references)> 0) {
234                         /* Trim down excessively long lists of thread references.  We eliminate the
235                          * second one in the list so that the thread root remains intact.
236                          */
237                         int rrtok = num_tokens(ChrPtr(Msg->reply_references), '|');
238                         int rrlen = StrLength(Msg->reply_references);
239                         if ( ((rrtok >= 3) && (rrlen > 900)) || (rrtok > 10) ) {
240                                 StrBufRemove_token(Msg->reply_references, 1, '|');
241                         }
242                 }
243
244                 /* now check if we need to translate some mimeparts, and remove the duplicate */
245                 it = GetNewHashPos(Msg->AllAttach, 0);
246                 while (GetNextHashPos(Msg->AllAttach, it, &len, &Key, &vMime) && 
247                        (vMime != NULL)) {
248                         StackContext(&SuperTP, &SubTP, vMime, CTX_MIME_ATACH, 0, NULL);
249                         {
250                                 evaluate_mime_part(Target, &SubTP);
251                         }
252                         UnStackContext(&SubTP);
253                 }
254                 DeleteHashPos(&it);
255                 *OutMime = DoTemplate(tmpl, tmpllen, Target, &SuperTP);
256         }
257         UnStackContext(&SuperTP);
258
259         DestroyMessageSummary(Msg);
260         FreeStrBuf(&FoundCharset);
261         FreeStrBuf(&Buf);
262         return 1;
263 }
264
265
266 long
267 HttpStatus(long CitadelStatus)
268 {
269         long httpstatus = 502;
270         
271         switch (MAJORCODE(CitadelStatus))
272         {
273         case LISTING_FOLLOWS:
274         case CIT_OK:
275                 httpstatus = 201;
276                 break;
277         case ERROR:
278                 switch (MINORCODE(CitadelStatus))
279                 {
280                 case INTERNAL_ERROR:
281                         httpstatus = 403;
282                         break;
283                         
284                 case TOO_BIG:
285                 case ILLEGAL_VALUE:
286                 case HIGHER_ACCESS_REQUIRED:
287                 case MAX_SESSIONS_EXCEEDED:
288                 case RESOURCE_BUSY:
289                 case RESOURCE_NOT_OPEN:
290                 case NOT_HERE:
291                 case INVALID_FLOOR_OPERATION:
292                 case FILE_NOT_FOUND:
293                 case ROOM_NOT_FOUND:
294                         httpstatus = 409;
295                         break;
296
297                 case MESSAGE_NOT_FOUND:
298                 case ALREADY_EXISTS:
299                         httpstatus = 403;
300                         break;
301
302                 case NO_SUCH_SYSTEM:
303                         httpstatus = 502;
304                         break;
305
306                 default:
307                 case CMD_NOT_SUPPORTED:
308                 case PASSWORD_REQUIRED:
309                 case ALREADY_LOGGED_IN:
310                 case USERNAME_REQUIRED:
311                 case NOT_LOGGED_IN:
312                 case SERVER_SHUTTING_DOWN:
313                 case NO_SUCH_USER:
314                 case ASYNC_GEXP:
315                         httpstatus = 502;
316                         break;
317                 }
318                 break;
319
320         default:
321         case BINARY_FOLLOWS:
322         case SEND_BINARY:
323         case START_CHAT_MODE:
324         case ASYNC_MSG:
325         case MORE_DATA:
326         case SEND_LISTING:
327                 httpstatus = 502; /* aeh... whut? */
328                 break;
329         }
330
331         return httpstatus;
332 }
333
334 /*
335  * Unadorned HTML output of an individual message, suitable
336  * for placing in a hidden iframe, for printing, or whatever
337  */
338 void handle_one_message(void) 
339 {
340         long CitStatus = ERROR + NOT_HERE;
341         int CopyMessage = 0;
342         const StrBuf *Destination;
343         void *vLine;
344         const StrBuf *Mime;
345         long msgnum = 0L;
346         wcsession *WCC = WC;
347         const StrBuf *Tmpl;
348         StrBuf *CmdBuf = NULL;
349         const char *pMsg;
350
351
352         pMsg = strchr(ChrPtr(WCC->Hdr->HR.ReqLine), '/');
353         if (pMsg == NULL) {
354                 HttpStatus(CitStatus);
355                 return;
356         }
357
358         msgnum = atol(pMsg + 1);
359         StrBufCutAt(WCC->Hdr->HR.ReqLine, 0, pMsg);
360         gotoroom(WCC->Hdr->HR.ReqLine);
361         switch (WCC->Hdr->HR.eReqType)
362         {
363         case eGET:
364         case ePOST:
365                 Tmpl = sbstr("template");
366                 if (StrLength(Tmpl) > 0) 
367                         read_message(WCC->WBuf, SKEY(Tmpl), msgnum, NULL, &Mime);
368                 else 
369                         read_message(WCC->WBuf, HKEY("view_message"), msgnum, NULL, &Mime);
370                 http_transmit_thing(ChrPtr(Mime), 0);
371                 break;
372         case eDELETE:
373                 CmdBuf = NewStrBuf ();
374                 if ((WCC->CurRoom.RAFlags & UA_ISTRASH) != 0) { /* Delete from Trash is a real delete */
375                         serv_printf("DELE %ld", msgnum);        
376                 }
377                 else {                  /* Otherwise move it to Trash */
378                         serv_printf("MOVE %ld|_TRASH_|0", msgnum);
379                 }
380                 StrBuf_ServGetln(CmdBuf);
381                 GetServerStatusMsg(CmdBuf, &CitStatus, 1, 0);
382                 HttpStatus(CitStatus);
383                 break;
384         case eCOPY:
385                 CopyMessage = 1;
386         case eMOVE:
387                 if (GetHash(WCC->Hdr->HTTPHeaders, HKEY("DESTINATION"), &vLine) &&
388                     (vLine!=NULL)) {
389                         Destination = (StrBuf*) vLine;
390                         serv_printf("MOVE %ld|%s|%d", msgnum, ChrPtr(Destination), CopyMessage);
391                         StrBuf_ServGetln(CmdBuf);
392                         GetServerStatusMsg(CmdBuf, NULL, 1, 0);
393                         GetServerStatus(CmdBuf, &CitStatus);
394                         HttpStatus(CitStatus);
395                 }
396                 else
397                         HttpStatus(500);
398                 break;
399         default:
400                 break;
401
402         }
403 }
404
405
406 /*
407  * Unadorned HTML output of an individual message, suitable
408  * for placing in a hidden iframe, for printing, or whatever
409  */
410 void embed_message(void) {
411         const StrBuf *Mime;
412         long msgnum = 0L;
413         wcsession *WCC = WC;
414         const StrBuf *Tmpl;
415         StrBuf *CmdBuf = NULL;
416
417         msgnum = StrBufExtract_long(WCC->Hdr->HR.ReqLine, 0, '/');
418         if (msgnum <= 0) return;
419
420         switch (WCC->Hdr->HR.eReqType)
421         {
422         case eGET:
423         case ePOST:
424                 Tmpl = sbstr("template");
425                 if (StrLength(Tmpl) > 0) 
426                         read_message(WCC->WBuf, SKEY(Tmpl), msgnum, NULL, &Mime);
427                 else 
428                         read_message(WCC->WBuf, HKEY("view_message"), msgnum, NULL, &Mime);
429                 http_transmit_thing(ChrPtr(Mime), 0);
430                 break;
431         case eDELETE:
432                 CmdBuf = NewStrBuf ();
433                 if ((WCC->CurRoom.RAFlags & UA_ISTRASH) != 0) { /* Delete from Trash is a real delete */
434                         serv_printf("DELE %ld", msgnum);        
435                 }
436                 else {                  /* Otherwise move it to Trash */
437                         serv_printf("MOVE %ld|_TRASH_|0", msgnum);
438                 }
439                 StrBuf_ServGetln(CmdBuf);
440                 GetServerStatusMsg(CmdBuf, NULL, 1, 0);
441                 break;
442         default:
443                 break;
444
445         }
446 }
447
448
449 /*
450  * Printable view of a message
451  */
452 void print_message(void) {
453         long msgnum = 0L;
454         const StrBuf *Mime;
455
456         msgnum = StrBufExtract_long(WC->Hdr->HR.ReqLine, 0, '/');
457         output_headers(0, 0, 0, 0, 0, 0);
458
459         hprintf("Content-type: text/html\r\n"
460                 "Server: " PACKAGE_STRING "\r\n"
461                 "Connection: close\r\n");
462
463         begin_burst();
464
465         read_message(WC->WBuf, HKEY("view_message_print"), msgnum, NULL, &Mime);
466
467         wDumpContent(0);
468 }
469
470 /*
471  * Display a message's headers
472  */
473 void display_headers(void) {
474         long msgnum = 0L;
475         char buf[1024];
476
477         msgnum = StrBufExtract_long(WC->Hdr->HR.ReqLine, 0, '/');
478         output_headers(0, 0, 0, 0, 0, 0);
479
480         hprintf("Content-type: text/plain\r\n"
481                 "Server: %s\r\n"
482                 "Connection: close\r\n",
483                 PACKAGE_STRING);
484         begin_burst();
485
486         serv_printf("MSG2 %ld|3", msgnum);
487         serv_getln(buf, sizeof buf);
488         if (buf[0] == '1') {
489                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
490                         wc_printf("%s\n", buf);
491                 }
492         }
493
494         wDumpContent(0);
495 }
496
497
498 message_summary *ReadOneMessageSummary(StrBuf *RawMessage, const char *DefaultSubject, long MsgNum) 
499 {
500         void                 *vEval;
501         MsgPartEvaluatorStruct  *Eval;
502         message_summary      *Msg;
503         StrBuf *Buf;
504         const char *buf;
505         const char *ebuf;
506         int nBuf;
507         long len;
508         
509         Buf = NewStrBuf();
510
511         serv_printf("MSG0 %ld|1", MsgNum);      /* ask for headers only */
512         
513         StrBuf_ServGetln(Buf);
514         if (GetServerStatus(Buf, NULL) == 1) {
515                 FreeStrBuf(&Buf);
516                 return NULL;
517         }
518
519         Msg = (message_summary*)malloc(sizeof(message_summary));
520         memset(Msg, 0, sizeof(message_summary));
521         while (len = StrBuf_ServGetln(Buf),
522                (len >= 0) && 
523                ((len != 3)  ||
524                 strcmp(ChrPtr(Buf), "000")))
525         {
526                 buf = ChrPtr(Buf);
527                 ebuf = strchr(ChrPtr(Buf), '=');
528                 nBuf = ebuf - buf;
529                 if (GetHash(MsgEvaluators, buf, nBuf, &vEval) && vEval != NULL) {
530                         Eval = (MsgPartEvaluatorStruct*) vEval;
531                         StrBufCutLeft(Buf, nBuf + 1);
532                         Eval->f(Msg, Buf);
533                 }
534                 else syslog(1, "Don't know how to handle Message Headerline [%s]", ChrPtr(Buf));
535         }
536         return Msg;
537 }
538
539
540
541
542
543 /*
544  * load message pointers from the server for a "read messages" operation
545  *
546  * servcmd:             the citadel command to send to the citserver
547  */
548 int load_msg_ptrs(const char *servcmd,
549                   const char *filter,
550                   SharedMessageStatus *Stat, 
551                   load_msg_ptrs_detailheaders LH)
552 {
553         wcsession *WCC = WC;
554         message_summary *Msg;
555         StrBuf *Buf, *Buf2;
556         long len;
557         int n;
558         int skipit;
559         const char *Ptr = NULL;
560         int StatMajor;
561
562         Stat->lowest_found = LONG_MAX;
563         Stat->highest_found = LONG_MIN;
564
565         if (WCC->summ != NULL) {
566                 DeleteHash(&WCC->summ);
567         }
568         WCC->summ = NewHash(1, Flathash);
569         
570         Buf = NewStrBuf();
571         serv_puts(servcmd);
572         StrBuf_ServGetln(Buf);
573         StatMajor = GetServerStatus(Buf, NULL);
574         switch (StatMajor) {
575         case 1:
576                 break;
577         case 8:
578                 if (filter != NULL) {
579                         serv_puts(filter);
580                         serv_puts("000");
581                         break;
582                 }
583                 /* fall back to empty filter in case of we were fooled... */
584                 serv_puts("");
585                 serv_puts("000");
586                 break;
587         default:
588                 FreeStrBuf(&Buf);
589                 return (Stat->nummsgs);
590         }
591         Buf2 = NewStrBuf();
592         while (len = StrBuf_ServGetln(Buf), 
593                ((len >= 0) &&
594                 ((len != 3) || 
595                  strcmp(ChrPtr(Buf), "000")!= 0)))
596         {
597                 if (Stat->nummsgs < Stat->maxload) {
598                         skipit = 0;
599                         Ptr = NULL;
600                         Msg = (message_summary*)malloc(sizeof(message_summary));
601                         memset(Msg, 0, sizeof(message_summary));
602
603                         Msg->msgnum = StrBufExtractNext_long(Buf, &Ptr, '|');
604                         Msg->date = StrBufExtractNext_long(Buf, &Ptr, '|');
605
606                         if (Stat->nummsgs == 0) {
607                                 if (Msg->msgnum < Stat->lowest_found) {
608                                         Stat->lowest_found = Msg->msgnum;
609                                 }
610                                 if (Msg->msgnum > Stat->highest_found) {
611                                         Stat->highest_found = Msg->msgnum;
612                                 }
613                         }
614
615                         if ((Msg->msgnum == 0) && (StrLength(Buf) < 32)) {
616                                 free(Msg);
617                                 continue;
618                         }
619
620                         /* 
621                          * as citserver probably gives us messages in forward date sorting
622                          * nummsgs should be the same order as the message date.
623                          */
624                         if (Msg->date == 0) {
625                                 Msg->date = Stat->nummsgs;
626                                 if (StrLength(Buf) < 32) 
627                                         skipit = 1;
628                         }
629                         if ((!skipit) && (LH != NULL)) {
630                                 if (!LH(Buf, &Ptr, Msg, Buf2)){
631                                         free(Msg);
632                                         continue;
633                                 }                                       
634                         }
635                         n = Msg->msgnum;
636                         Put(WCC->summ, (const char *)&n, sizeof(n), Msg, DestroyMessageSummary);
637                 }
638                 Stat->nummsgs++;
639         }
640         FreeStrBuf(&Buf2);
641         FreeStrBuf(&Buf);
642         return (Stat->nummsgs);
643 }
644
645
646
647 /**
648  * \brief sets FlagToSet for each of ScanMe that appears in MatchMSet
649  * \param ScanMe List of BasicMsgStruct to be searched it MatchSet
650  * \param MatchMSet MSet we want to flag
651  * \param FlagToSet Flag to set on each BasicMsgStruct->Flags if in MSet
652  */
653 void SetFlagsFromMSet(HashList *ScanMe, MSet *MatchMSet, int FlagToSet, int Reverse)
654 {
655         const char *HashKey;
656         long HKLen;
657         HashPos *at;
658         void *vMsg;
659         message_summary *Msg;
660
661         at = GetNewHashPos(ScanMe, 0);
662         while (GetNextHashPos(ScanMe, at, &HKLen, &HashKey, &vMsg)) {
663                 /* Are you a new message, or an old message? */
664                 Msg = (message_summary*) vMsg;
665                 if (Reverse && IsInMSetList(MatchMSet, Msg->msgnum)) {
666                         Msg->Flags = Msg->Flags | FlagToSet;
667                 }
668                 else if (!Reverse && !IsInMSetList(MatchMSet, Msg->msgnum)) {
669                         Msg->Flags = Msg->Flags | FlagToSet;
670                 }
671         }
672         DeleteHashPos(&at);
673 }
674
675
676 void load_seen_flags(void)
677 {
678         StrBuf *OldMsg;
679         wcsession *WCC = WC;
680         MSet *MatchMSet;
681
682         OldMsg = NewStrBuf();
683         serv_puts("GTSN");
684         StrBuf_ServGetln(OldMsg);
685         if (GetServerStatus(OldMsg, NULL) == 2) {
686                 StrBufCutLeft(OldMsg, 4);
687         }
688         else {
689                 FreeStrBuf(&OldMsg);
690                 return;
691         }
692
693         if (ParseMSet(&MatchMSet, OldMsg))
694         {
695                 SetFlagsFromMSet(WCC->summ, MatchMSet, MSGFLAG_READ, 0);
696         }
697         DeleteMSet(&MatchMSet);
698         FreeStrBuf(&OldMsg);
699 }
700
701 extern readloop_struct rlid[];
702
703 typedef struct _RoomRenderer{
704         int RoomType;
705
706         GetParamsGetServerCall_func GetParamsGetServerCall;
707         
708         PrintViewHeader_func PrintPageHeader;
709         PrintViewHeader_func PrintViewHeader;
710         LoadMsgFromServer_func LoadMsgFromServer;
711         RenderView_or_Tail_func RenderView_or_Tail;
712         View_Cleanup_func ViewCleanup;
713         load_msg_ptrs_detailheaders LHParse;
714 } RoomRenderer;
715
716
717 /*
718  * command loop for reading messages
719  *
720  * Set oper to "readnew" or "readold" or "readfwd" or "headers" or "readgt" or "readlt" or "do_search"
721  */
722 void readloop(long oper, eCustomRoomRenderer ForceRenderer)
723 {
724         RoomRenderer *ViewMsg;
725         void *vViewMsg;
726         void *vMsg;
727         message_summary *Msg;
728         char cmd[256] = "";
729         char filter[256] = "";
730         int i, r;
731         wcsession *WCC = WC;
732         HashPos *at;
733         const char *HashKey;
734         long HKLen;
735         WCTemplputParams SubTP;
736         SharedMessageStatus Stat;
737         void *ViewSpecific;
738
739         if (havebstr("is_summary") && (1 == (ibstr("is_summary")))) {
740                 WCC->CurRoom.view = VIEW_MAILBOX;
741         }
742
743         if (havebstr("view")) {
744                 WCC->CurRoom.view = ibstr("view");
745         }
746
747         memset(&Stat, 0, sizeof(SharedMessageStatus));
748         Stat.maxload = 10000;
749         Stat.lowest_found = (-1);
750         Stat.highest_found = (-1);
751         if (ForceRenderer == eUseDefault)
752                 GetHash(ReadLoopHandler, IKEY(WCC->CurRoom.view), &vViewMsg);
753         else 
754                 GetHash(ReadLoopHandler, IKEY(ForceRenderer), &vViewMsg);
755         if (vViewMsg == NULL) {
756                 WCC->CurRoom.view = VIEW_BBS;
757                 GetHash(ReadLoopHandler, IKEY(WCC->CurRoom.view), &vViewMsg);
758         }
759         if (vViewMsg == NULL) {
760                 return;                 /* TODO: print message */
761         }
762
763         ViewMsg = (RoomRenderer*) vViewMsg;
764         if (ViewMsg->PrintPageHeader == NULL)
765                 output_headers(1, 1, 1, 0, 0, 0);
766         else 
767                 ViewMsg->PrintPageHeader(&Stat, ViewSpecific);
768
769         if (ViewMsg->GetParamsGetServerCall != NULL) {
770                 r = ViewMsg->GetParamsGetServerCall(
771                        &Stat,
772                        &ViewSpecific,
773                        oper,
774                        cmd, sizeof(cmd),
775                        filter, sizeof(filter)
776                 );
777         } else {
778                 r = 0;
779         }
780
781         switch(r)
782         {
783         case 400:
784         case 404:
785
786                 return;
787         case 300: /* the callback hook should do the work for us here, since he knows what to do. */
788                 return;
789         case 200:
790         default:
791                 break;
792         }
793         if (!IsEmptyStr(cmd)) {
794                 const char *p = NULL;
795                 if (!IsEmptyStr(filter))
796                         p = filter;
797                 Stat.nummsgs = load_msg_ptrs(cmd, p, &Stat, ViewMsg->LHParse);
798         }
799
800         if (Stat.sortit) {
801                 CompareFunc SortIt;
802                 StackContext(NULL, &SubTP, NULL, CTX_MAILSUM, 0, NULL);
803                 {
804                         SortIt =  RetrieveSort(&SubTP,
805                                                NULL, 0,
806                                                HKEY("date"),
807                                                Stat.defaultsortorder);
808                 }
809                 UnStackContext(&SubTP);
810                 if (SortIt != NULL)
811                         SortByPayload(WCC->summ, SortIt);
812         }
813         if (Stat.startmsg < 0) {
814                 Stat.startmsg =  0;
815         }
816
817         if (Stat.load_seen) load_seen_flags();
818         
819         /*
820          * Print any inforation above the message list...
821          */
822         if (ViewMsg->PrintViewHeader != NULL)
823                 ViewMsg->PrintViewHeader(&Stat, &ViewSpecific);
824
825         WCC->startmsg =  Stat.startmsg;
826         WCC->maxmsgs = Stat.maxmsgs;
827         WCC->num_displayed = 0;
828
829         /* Put some helpful data in vars for mailsummary_json */
830         {
831                 StrBuf *Foo;
832                 
833                 Foo = NewStrBuf ();
834                 StrBufPrintf(Foo, "%ld", Stat.nummsgs);
835                 PutBstr(HKEY("__READLOOP:TOTALMSGS"), NewStrBufDup(Foo));
836                 StrBufPrintf(Foo, "%ld", Stat.startmsg);
837                 PutBstr(HKEY("__READLOOP:STARTMSG"), Foo);
838         }
839
840         /*
841          * iterate over each message. if we need to load an attachment, do it here. 
842          */
843
844         if ((ViewMsg->LoadMsgFromServer != NULL) && 
845             (!IsEmptyStr(cmd)))
846         {
847                 at = GetNewHashPos(WCC->summ, 0);
848                 Stat.num_displayed = i = 0;
849                 while ( GetNextHashPos(WCC->summ, at, &HKLen, &HashKey, &vMsg)) {
850                         Msg = (message_summary*) vMsg;          
851                         if ((Msg->msgnum >= Stat.startmsg) && (Stat.num_displayed <= Stat.maxmsgs)) {
852                                 ViewMsg->LoadMsgFromServer(&Stat, 
853                                                            &ViewSpecific, 
854                                                            Msg, 
855                                                            (Msg->Flags & MSGFLAG_READ) != 0, 
856                                                            i);
857                         } 
858                         i++;
859                 }
860                 DeleteHashPos(&at);
861         }
862
863         /*
864          * Done iterating the message list. now tasks we want to do after.
865          */
866         if (ViewMsg->RenderView_or_Tail != NULL)
867                 ViewMsg->RenderView_or_Tail(&Stat, &ViewSpecific, oper);
868
869         if (ViewMsg->ViewCleanup != NULL)
870                 ViewMsg->ViewCleanup(&ViewSpecific);
871
872         WCC->startmsg = 0;
873         WCC->maxmsgs = 0;
874         if (WCC->summ != NULL) {
875                 DeleteHash(&WCC->summ);
876         }
877 }
878
879
880 /*
881  * Back end for post_message()
882  * ... this is where the actual message gets transmitted to the server.
883  */
884 void post_mime_to_server(void) {
885         wcsession *WCC = WC;
886         char top_boundary[SIZ];
887         char alt_boundary[SIZ];
888         int is_multipart = 0;
889         static int seq = 0;
890         wc_mime_attachment *att;
891         char *encoded;
892         size_t encoded_length;
893         size_t encoded_strlen;
894         char *txtmail = NULL;
895         int include_text_alt = 0;       /* Set to nonzero to include multipart/alternative text/plain */
896
897         sprintf(top_boundary, "Citadel--Multipart--%s--%04x--%04x",
898                 ChrPtr(WCC->serv_info->serv_fqdn),
899                 getpid(),
900                 ++seq
901         );
902         sprintf(alt_boundary, "Citadel--Multipart--%s--%04x--%04x",
903                 ChrPtr(WCC->serv_info->serv_fqdn),
904                 getpid(),
905                 ++seq
906         );
907
908         /* RFC2045 requires this, and some clients look for it... */
909         serv_puts("MIME-Version: 1.0");
910         serv_puts("X-Mailer: " PACKAGE_STRING);
911
912         /* If there are attachments, we have to do multipart/mixed */
913         if (GetCount(WCC->attachments) > 0) {
914                 is_multipart = 1;
915         }
916
917         /* Only do multipart/alternative for mailboxes.  BBS and Wiki rooms don't need it. */
918         if ((WCC->CurRoom.view == VIEW_MAILBOX) ||
919             (WCC->CurRoom.view == VIEW_JSON_LIST))
920         {
921                 include_text_alt = 1;
922         }
923
924         if (is_multipart) {
925                 /* Remember, serv_printf() appends an extra newline */
926                 serv_printf("Content-type: multipart/mixed; boundary=\"%s\"\n", top_boundary);
927                 serv_printf("This is a multipart message in MIME format.\n");
928                 serv_printf("--%s", top_boundary);
929         }
930
931         /* Remember, serv_printf() appends an extra newline */
932         if (include_text_alt) {
933                 serv_printf("Content-type: multipart/alternative; "
934                         "boundary=\"%s\"\n", alt_boundary);
935                 serv_printf("This is a multipart message in MIME format.\n");
936                 serv_printf("--%s", alt_boundary);
937
938                 serv_puts("Content-type: text/plain; charset=utf-8");
939                 serv_puts("Content-Transfer-Encoding: quoted-printable");
940                 serv_puts("");
941                 txtmail = html_to_ascii(bstr("msgtext"), 0, 80, 0);
942                 text_to_server_qp(txtmail);     /* Transmit message in quoted-printable encoding */
943                 free(txtmail);
944
945                 serv_printf("\n--%s", alt_boundary);
946         }
947
948         serv_puts("Content-type: text/html; charset=utf-8");
949         serv_puts("Content-Transfer-Encoding: quoted-printable");
950         serv_puts("");
951         serv_puts("<html><body>\r\n");
952         text_to_server_qp(bstr("msgtext"));     /* Transmit message in quoted-printable encoding */
953         serv_puts("</body></html>\r\n");
954
955         if (include_text_alt) {
956                 serv_printf("--%s--", alt_boundary);
957         }
958         
959         if (is_multipart) {
960                 long len;
961                 const char *Key; 
962                 void *vAtt;
963                 HashPos  *it;
964
965                 /* Add in the attachments */
966                 it = GetNewHashPos(WCC->attachments, 0);
967                 while (GetNextHashPos(WCC->attachments, it, &len, &Key, &vAtt)) {
968                         att = (wc_mime_attachment *)vAtt;
969                         if (att->length == 0)
970                                 continue;
971                         encoded_length = ((att->length * 150) / 100);
972                         encoded = malloc(encoded_length);
973                         if (encoded == NULL) break;
974                         encoded_strlen = CtdlEncodeBase64(encoded, ChrPtr(att->Data), StrLength(att->Data), 1);
975
976                         serv_printf("--%s", top_boundary);
977                         serv_printf("Content-type: %s", ChrPtr(att->ContentType));
978                         serv_printf("Content-disposition: attachment; filename=\"%s\"", ChrPtr(att->FileName));
979                         serv_puts("Content-transfer-encoding: base64");
980                         serv_puts("");
981                         serv_write(encoded, encoded_strlen);
982                         serv_puts("");
983                         serv_puts("");
984                         free(encoded);
985                 }
986                 serv_printf("--%s--", top_boundary);
987                 DeleteHashPos(&it);
988         }
989
990         serv_puts("000");
991 }
992
993
994 /*
995  * Post message (or don't post message)
996  *
997  * Note regarding the "dont_post" variable:
998  * A random value (actually, it's just a timestamp) is inserted as a hidden
999  * field called "postseq" when the display_enter page is generated.  This
1000  * value is checked when posting, using the static variable dont_post.  If a
1001  * user attempts to post twice using the same dont_post value, the message is
1002  * discarded.  This prevents the accidental double-saving of the same message
1003  * if the user happens to click the browser "back" button.
1004  */
1005 void post_message(void)
1006 {
1007         StrBuf *UserName;
1008         StrBuf *EmailAddress;
1009         StrBuf *EncBuf;
1010         char buf[1024];
1011         StrBuf *encoded_subject = NULL;
1012         static long dont_post = (-1L);
1013         int is_anonymous = 0;
1014         const StrBuf *display_name = NULL;
1015         wcsession *WCC = WC;
1016         StrBuf *Buf;
1017         
1018         if (havebstr("force_room")) {
1019                 gotoroom(sbstr("force_room"));
1020         }
1021
1022         if (havebstr("display_name")) {
1023                 display_name = sbstr("display_name");
1024                 if (!strcmp(ChrPtr(display_name), "__ANONYMOUS__")) {
1025                         display_name = NULL;
1026                         is_anonymous = 1;
1027                 }
1028         }
1029
1030         if (!strcasecmp(bstr("submit_action"), "cancel")) {
1031                 AppendImportantMessage(_("Cancelled.  Message was not posted."), -1);
1032         } else if (lbstr("postseq") == dont_post) {
1033                 AppendImportantMessage(
1034                         _("Automatically cancelled because you have already "
1035                           "saved this message."), -1);
1036         } else {
1037                 const char CMD[] = "ENT0 1|%s|%d|4|%s|%s||%s|%s|%s|%s|%s";
1038                 StrBuf *Recp = NULL; 
1039                 StrBuf *Cc = NULL;
1040                 StrBuf *Bcc = NULL;
1041                 char *wikipage = NULL;
1042                 const StrBuf *my_email_addr = NULL;
1043                 StrBuf *CmdBuf = NULL;
1044                 StrBuf *references = NULL;
1045                 int saving_to_drafts = 0;
1046                 long HeaderLen = 0;
1047
1048                 saving_to_drafts = !strcasecmp(bstr("submit_action"), "draft");
1049                 Buf = NewStrBuf();
1050
1051                 if (saving_to_drafts) {
1052                         /* temporarily change to the drafts room */
1053                         serv_puts("GOTO _DRAFTS_");
1054                         StrBuf_ServGetln(Buf);
1055                         if (GetServerStatusMsg(Buf, NULL, 1, 2) != 2) {
1056                                 /* You probably don't even have a dumb Drafts folder */
1057                                 syslog(9, "%s:%d: server save to drafts error: %s\n", __FILE__, __LINE__, ChrPtr(Buf) + 4);
1058                                 AppendImportantMessage(_("Saved to Drafts failed: "), -1);
1059                                 display_enter();
1060                                 FreeStrBuf(&Buf);
1061                                 return;
1062                         }
1063                 }
1064
1065                 if (havebstr("references"))
1066                 {
1067                         const StrBuf *ref = sbstr("references");
1068                         references = NewStrBufDup(ref);
1069                         if (*ChrPtr(references) == '|') {       /* remove leading '|' if present */
1070                                 StrBufCutLeft(references, 1);
1071                         }
1072                         StrBufReplaceChars(references, '|', '!');
1073                 }
1074                 if (havebstr("subject")) {
1075                         const StrBuf *Subj;
1076                         /*
1077                          * make enough room for the encoded string; 
1078                          * plus the QP header 
1079                          */
1080                         Subj = sbstr("subject");
1081                         
1082                         StrBufRFC2047encode(&encoded_subject, Subj);
1083                 }
1084                 UserName = NewStrBuf();
1085                 EmailAddress = NewStrBuf();
1086                 EncBuf = NewStrBuf();
1087
1088                 Recp = StrBufSanitizeEmailRecipientVector(sbstr("recp"), UserName, EmailAddress, EncBuf);
1089                 Cc = StrBufSanitizeEmailRecipientVector(sbstr("cc"), UserName, EmailAddress, EncBuf);
1090                 Bcc = StrBufSanitizeEmailRecipientVector(sbstr("bcc"), UserName, EmailAddress, EncBuf);
1091
1092                 FreeStrBuf(&UserName);
1093                 FreeStrBuf(&EmailAddress);
1094                 FreeStrBuf(&EncBuf);
1095
1096                 wikipage = strdup(bstr("page"));
1097                 str_wiki_index(wikipage);
1098                 my_email_addr = sbstr("my_email_addr");
1099                 
1100                 HeaderLen = StrLength(Recp) + 
1101                         StrLength(encoded_subject) +
1102                         StrLength(Cc) +
1103                         StrLength(Bcc) + 
1104                         strlen(wikipage) +
1105                         StrLength(my_email_addr) + 
1106                         StrLength(references);
1107                 CmdBuf = NewStrBufPlain(NULL, sizeof (CMD) + HeaderLen);
1108                 StrBufPrintf(CmdBuf, 
1109                              CMD,
1110                              saving_to_drafts?"":ChrPtr(Recp),
1111                              is_anonymous,
1112                              ChrPtr(encoded_subject),
1113                              ChrPtr(display_name),
1114                              saving_to_drafts?"":ChrPtr(Cc),
1115                              saving_to_drafts?"":ChrPtr(Bcc),
1116                              wikipage,
1117                              ChrPtr(my_email_addr),
1118                              ChrPtr(references));
1119                 FreeStrBuf(&references);
1120                 FreeStrBuf(&encoded_subject);
1121                 free(wikipage);
1122
1123                 if ((HeaderLen + StrLength(sbstr("msgtext")) < 10) && 
1124                     (GetCount(WCC->attachments) == 0)){
1125                         AppendImportantMessage(_("Refusing to post empty message.\n"), -1);
1126                         FreeStrBuf(&CmdBuf);
1127                                 
1128                 }
1129                 else 
1130                 {
1131                         syslog(9, "%s\n", ChrPtr(CmdBuf));
1132                         serv_puts(ChrPtr(CmdBuf));
1133                         FreeStrBuf(&CmdBuf);
1134
1135                         StrBuf_ServGetln(Buf);
1136                         if (GetServerStatus(Buf, NULL) == 4) {
1137                                 if (saving_to_drafts) {
1138                                         if (  (havebstr("recp"))
1139                                               || (havebstr("cc"  ))
1140                                               || (havebstr("bcc" )) ) {
1141                                                 /* save recipient headers or room to post to */
1142                                                 serv_printf("To: %s", ChrPtr(Recp));
1143                                                 serv_printf("Cc: %s", ChrPtr(Cc));
1144                                                 serv_printf("Bcc: %s", ChrPtr(Bcc));
1145                                         } else {
1146                                                 serv_printf("X-Citadel-Room: %s", ChrPtr(WCC->CurRoom.name));
1147                                         }
1148                                 }
1149                                 post_mime_to_server();
1150                                 if (saving_to_drafts) {
1151                                         AppendImportantMessage(_("Message has been saved to Drafts.\n"), -1);
1152                                         gotoroom(WCC->CurRoom.name);
1153                                         fixview();
1154                                         readloop(readnew, eUseDefault);
1155                                         FreeStrBuf(&Buf);
1156                                         return;
1157                                 } else if (  (havebstr("recp"))
1158                                              || (havebstr("cc"  ))
1159                                              || (havebstr("bcc" ))
1160                                         ) {
1161                                         AppendImportantMessage(_("Message has been sent.\n"), -1);
1162                                 }
1163                                 else {
1164                                         AppendImportantMessage(_("Message has been posted.\n"), -1);
1165                                 }
1166                                 dont_post = lbstr("postseq");
1167                         } else {
1168                                 syslog(9, "%s:%d: server post error: %s", __FILE__, __LINE__, ChrPtr(Buf) + 4);
1169                                 AppendImportantMessage(ChrPtr(Buf) + 4, StrLength(Buf) - 4);
1170                                 display_enter();
1171                                 if (saving_to_drafts) gotoroom(WCC->CurRoom.name);
1172                                 FreeStrBuf(&Recp);
1173                                 FreeStrBuf(&Buf);
1174                                 FreeStrBuf(&Cc);
1175                                 FreeStrBuf(&Bcc);
1176                                 return;
1177                         }
1178                 }
1179                 FreeStrBuf(&Recp);
1180                 FreeStrBuf(&Buf);
1181                 FreeStrBuf(&Cc);
1182                 FreeStrBuf(&Bcc);
1183         }
1184
1185         DeleteHash(&WCC->attachments);
1186
1187         /*
1188          *  We may have been supplied with instructions regarding the location
1189          *  to which we must return after posting.  If found, go there.
1190          */
1191         if (havebstr("return_to")) {
1192                 http_redirect(bstr("return_to"));
1193         }
1194         /*
1195          *  If we were editing a page in a wiki room, go to that page now.
1196          */
1197         else if (havebstr("page")) {
1198                 snprintf(buf, sizeof buf, "wiki?page=%s", bstr("page"));
1199                 http_redirect(buf);
1200         }
1201         /*
1202          *  Otherwise, just go to the "read messages" loop.
1203          */
1204         else {
1205                 fixview();
1206                 readloop(readnew, eUseDefault);
1207         }
1208 }
1209
1210
1211 /*
1212  * Client is uploading an attachment
1213  */
1214 void upload_attachment(void) {
1215         wcsession *WCC = WC;
1216         const char *pch;
1217         int n;
1218         const char *newn;
1219         long newnlen;
1220         void *v;
1221         wc_mime_attachment *att;
1222
1223         syslog(9, "upload_attachment()\n");
1224         wc_printf("upload_attachment()<br>\n");
1225
1226         if (WCC->upload_length <= 0) {
1227                 syslog(9, "ERROR no attachment was uploaded\n");
1228                 wc_printf("ERROR no attachment was uploaded<br>\n");
1229                 return;
1230         }
1231
1232         syslog(9, "Client is uploading %d bytes\n", WCC->upload_length);
1233         wc_printf("Client is uploading %d bytes<br>\n", WCC->upload_length);
1234         att = malloc(sizeof(wc_mime_attachment));
1235         memset(att, 0, sizeof(wc_mime_attachment ));
1236         att->length = WCC->upload_length;
1237         att->ContentType = NewStrBufPlain(WCC->upload_content_type, -1);
1238         att->FileName = NewStrBufDup(WCC->upload_filename);
1239         
1240         if (WCC->attachments == NULL) {
1241                 WCC->attachments = NewHash(1, Flathash);
1242         }
1243
1244         /* And add it to the list. */
1245         n = 0;
1246         if ((GetCount(WCC->attachments) > 0) && 
1247             GetHashAt(WCC->attachments, 
1248                       GetCount(WCC->attachments) -1, 
1249                       &newnlen, &newn, &v))
1250             n = *((int*) newn) + 1;
1251         Put(WCC->attachments, IKEY(n), att, DestroyMime);
1252
1253         /*
1254          * Mozilla sends a simple filename, which is what we want,
1255          * but Satan's Browser sends an entire pathname.  Reduce
1256          * the path to just a filename if we need to.
1257          */
1258         pch = strrchr(ChrPtr(att->FileName), '/');
1259         if (pch != NULL) {
1260                 StrBufCutLeft(att->FileName, pch - ChrPtr(att->FileName) + 1);
1261         }
1262         pch = strrchr(ChrPtr(att->FileName), '\\');
1263         if (pch != NULL) {
1264                 StrBufCutLeft(att->FileName, pch - ChrPtr(att->FileName) + 1);
1265         }
1266
1267         /*
1268          * Transfer control of this memory from the upload struct
1269          * to the attachment struct.
1270          */
1271         att->Data = WCC->upload;
1272         WCC->upload = NULL;
1273         WCC->upload_length = 0;
1274 }
1275
1276
1277 /*
1278  * Remove an attachment from the message currently being composed.
1279  *
1280  * Currently we identify the attachment to be removed by its filename.
1281  * There is probably a better way to do this.
1282  */
1283 void remove_attachment(void) {
1284         wcsession *WCC = WC;
1285         wc_mime_attachment *att;
1286         void *vAtt;
1287         StrBuf *WhichAttachment;
1288         HashPos *at;
1289         long len;
1290         const char *key;
1291
1292         WhichAttachment = NewStrBufDup(sbstr("which_attachment"));
1293         StrBufUnescape(WhichAttachment, 0);
1294         at = GetNewHashPos(WCC->attachments, 0);
1295         do {
1296                 GetHashPos(WCC->attachments, at, &len, &key, &vAtt);
1297         
1298                 att = (wc_mime_attachment*) vAtt;
1299                 if ((att != NULL) && 
1300                     (strcmp(ChrPtr(WhichAttachment), 
1301                             ChrPtr(att->FileName)   ) == 0))
1302                 {
1303                         DeleteEntryFromHash(WCC->attachments, at);
1304                         break;
1305                 }
1306         }
1307         while (NextHashPos(WCC->attachments, at));
1308         FreeStrBuf(&WhichAttachment);
1309         wc_printf("remove_attachment() completed\n");
1310 }
1311
1312
1313 long FourHash(const char *key, long length) 
1314 {
1315         int i;
1316         long ret = 0;
1317         const unsigned char *ptr = (const unsigned char*)key;
1318
1319         for (i = 0; i < 4; i++, ptr ++) 
1320                 ret = (ret << 8) | 
1321                         ( ((*ptr >= 'a') &&
1322                            (*ptr <= 'z'))? 
1323                           *ptr - 'a' + 'A': 
1324                           *ptr);
1325
1326         return ret;
1327 }
1328
1329 long l_subj;
1330 long l_wefw;
1331 long l_msgn;
1332 long l_from;
1333 long l_rcpt;
1334 long l_cccc;
1335 long l_replyto;
1336 long l_node;
1337 long l_rfca;
1338 long l_nvto;
1339
1340 const char *ReplyToModeStrings [3] = {
1341         "reply",
1342         "replyalle",
1343         "forward"
1344 };
1345 typedef enum _eReplyToNodes {
1346         eReply,
1347         eReplyAll,
1348         eForward
1349 }eReplyToNodes;
1350         
1351 /*
1352  * display the message entry screen
1353  */
1354 void display_enter(void)
1355 {
1356         const char *ReplyingModeStr;
1357         eReplyToNodes ReplyMode = eReply;
1358         StrBuf *Line;
1359         long Result;
1360         int rc;
1361         const StrBuf *display_name = NULL;
1362         int recipient_required = 0;
1363         int subject_required = 0;
1364         int is_anonymous = 0;
1365         wcsession *WCC = WC;
1366         int i = 0;
1367         long replying_to;
1368
1369         if (havebstr("force_room")) {
1370                 gotoroom(sbstr("force_room"));
1371         }
1372
1373         display_name = sbstr("display_name");
1374         if (!strcmp(ChrPtr(display_name), "__ANONYMOUS__")) {
1375                 display_name = NULL;
1376                 is_anonymous = 1;
1377         }
1378
1379         /*
1380          * First, do we have permission to enter messages in this room at all?
1381          */
1382         Line = NewStrBuf();
1383         serv_puts("ENT0 0");
1384         StrBuf_ServGetln(Line);
1385         rc = GetServerStatusMsg(Line, &Result, 0, 2);
1386
1387         if (Result == 570) {            /* 570 means that we need a recipient here */
1388                 recipient_required = 1;
1389         }
1390         else if (rc != 2) {             /* Any other error means that we cannot continue */
1391                 rc = GetServerStatusMsg(Line, &Result, 0, 2);
1392                 fixview();
1393                 readloop(readnew, eUseDefault);
1394                 FreeStrBuf(&Line);
1395                 return;
1396         }
1397
1398         /* Is the server strongly recommending that the user enter a message subject? */
1399         if (StrLength(Line) > 4) {
1400                 subject_required = extract_int(ChrPtr(Line) + 4, 1);
1401         }
1402
1403         /*
1404          * Are we perhaps in an address book view?  If so, then an "enter
1405          * message" command really means "add new entry."
1406          */
1407         if (WCC->CurRoom.defview == VIEW_ADDRESSBOOK) {
1408                 do_edit_vcard(-1, "", NULL, NULL, "",  ChrPtr(WCC->CurRoom.name));
1409                 FreeStrBuf(&Line);
1410                 return;
1411         }
1412
1413         /*
1414          * Are we perhaps in a calendar room?  If so, then an "enter
1415          * message" command really means "add new calendar item."
1416          */
1417         if (WCC->CurRoom.defview == VIEW_CALENDAR) {
1418                 display_edit_event();
1419                 FreeStrBuf(&Line);
1420                 return;
1421         }
1422
1423         /*
1424          * Are we perhaps in a tasks view?  If so, then an "enter
1425          * message" command really means "add new task."
1426          */
1427         if (WCC->CurRoom.defview == VIEW_TASKS) {
1428                 display_edit_task();
1429                 FreeStrBuf(&Line);
1430                 return;
1431         }
1432
1433
1434         ReplyingModeStr = bstr("replying_mode");
1435         if (ReplyingModeStr != NULL) for (i = 0; i < 3; i++) {
1436                         if (strcmp(ReplyingModeStr, ReplyToModeStrings[i]) == 0) {
1437                                 ReplyMode = (eReplyToNodes) i;
1438                                 break;
1439                         }
1440                 }
1441                 
1442
1443         /*
1444          * If the "replying_to" variable is set, it refers to a message
1445          * number from which we must extract some header fields...
1446          */
1447         replying_to = lbstr("replying_to");
1448         if (replying_to > 0) {
1449                 long len;
1450                 StrBuf *wefw = NULL;
1451                 StrBuf *msgn = NULL;
1452                 StrBuf *from = NULL;
1453                 StrBuf *node = NULL;
1454                 StrBuf *rfca = NULL;
1455                 StrBuf *rcpt = NULL;
1456                 StrBuf *cccc = NULL;
1457                 StrBuf *replyto = NULL;
1458                 StrBuf *nvto = NULL;
1459                 serv_printf("MSG0 %ld|1", replying_to); 
1460
1461                 StrBuf_ServGetln(Line);
1462                 if (GetServerStatusMsg(Line, NULL, 0, 0) == 1)
1463                         while (len = StrBuf_ServGetln(Line),
1464                                (len >= 0) && 
1465                                ((len != 3)  ||
1466                                 strcmp(ChrPtr(Line), "000")))
1467                         {
1468                                 long which = 0;
1469                                 if ((StrLength(Line) > 4) && 
1470                                     (ChrPtr(Line)[4] == '='))
1471                                         which = FourHash(ChrPtr(Line), 4);
1472
1473                                 if (which == l_subj)
1474                                 {
1475                                         StrBuf *subj = NewStrBuf();
1476                                         StrBuf *FlatSubject;
1477
1478                                         if (ReplyMode == eForward) {
1479                                                 if (strncasecmp(ChrPtr(Line) + 5, "Fw:", 3)) {
1480                                                         StrBufAppendBufPlain(subj, HKEY("Fw: "), 0);
1481                                                 }
1482                                         }
1483                                         else {
1484                                                 if (strncasecmp(ChrPtr(Line) + 5, "Re:", 3)) {
1485                                                         StrBufAppendBufPlain(subj, HKEY("Re: "), 0);
1486                                                 }
1487                                         }
1488                                         StrBufAppendBufPlain(subj, 
1489                                                              ChrPtr(Line) + 5, 
1490                                                              StrLength(Line) - 5, 0);
1491                                         FlatSubject = NewStrBufPlain(NULL, StrLength(subj));
1492                                         StrBuf_RFC822_to_Utf8(FlatSubject, subj, NULL, NULL);
1493
1494                                         PutBstr(HKEY("subject"), FlatSubject);
1495                                 }
1496
1497                                 else if (which == l_wefw)
1498                                 {
1499                                         int rrtok;
1500                                         int rrlen;
1501
1502                                         wefw = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1503                                         
1504                                         /* Trim down excessively long lists of thread references.  We eliminate the
1505                                          * second one in the list so that the thread root remains intact.
1506                                          */
1507                                         rrtok = num_tokens(ChrPtr(wefw), '|');
1508                                         rrlen = StrLength(wefw);
1509                                         if ( ((rrtok >= 3) && (rrlen > 900)) || (rrtok > 10) ) {
1510                                                 StrBufRemove_token(wefw, 1, '|');
1511                                         }
1512                                 }
1513
1514                                 else if (which == l_msgn) {
1515                                         msgn = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1516                                 }
1517
1518                                 else if (which == l_from) {
1519                                         StrBuf *FlatFrom;
1520                                         from = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1521                                         FlatFrom = NewStrBufPlain(NULL, StrLength(from));
1522                                         StrBuf_RFC822_to_Utf8(FlatFrom, from, NULL, NULL);
1523                                         FreeStrBuf(&from);
1524                                         from = FlatFrom;
1525                                         for (i=0; i<StrLength(from); ++i) {
1526                                                 if (ChrPtr(from)[i] == ',')
1527                                                         StrBufPeek(from, NULL, i, ' ');
1528                                         }
1529                                 }
1530                                 
1531                                 else if (which == l_rcpt) {
1532                                         rcpt = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1533                                 }
1534                                 
1535                                 else if (which == l_cccc) {
1536                                         cccc = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1537                                 }
1538                                 
1539                                 else if (which == l_node) {
1540                                         node = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1541                                 }
1542                                 else if (which == l_replyto) {
1543                                         replyto = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1544                                 }
1545                                 else if (which == l_rfca) {
1546                                         StrBuf *FlatRFCA;
1547                                         rfca = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1548                                         FlatRFCA = NewStrBufPlain(NULL, StrLength(rfca));
1549                                         StrBuf_RFC822_to_Utf8(FlatRFCA, rfca, NULL, NULL);
1550                                         FreeStrBuf(&rfca);
1551                                         rfca = FlatRFCA;
1552                                 }
1553                                 else if (which == l_nvto) {
1554                                         nvto = NewStrBufPlain(ChrPtr(Line) + 5, StrLength(Line) - 5);
1555                                         putbstr("nvto", nvto);
1556                                 }
1557                         }
1558
1559
1560                 if (StrLength(wefw) + StrLength(msgn) > 0) {
1561                         StrBuf *refs = NewStrBuf();
1562                         if (StrLength(wefw) > 0) {
1563                                 StrBufAppendBuf(refs, wefw, 0);
1564                         }
1565                         if ( (StrLength(wefw) > 0) && 
1566                              (StrLength(msgn) > 0) ) 
1567                         {
1568                                 StrBufAppendBufPlain(refs, HKEY("|"), 0);
1569                         }
1570                         if (StrLength(msgn) > 0) {
1571                                 StrBufAppendBuf(refs, msgn, 0);
1572                         }
1573                         PutBstr(HKEY("references"), refs);
1574                 }
1575
1576                 /*
1577                  * If this is a Reply or a ReplyAll, copy the sender's email into the To: field
1578                  */
1579                 if ((ReplyMode == eReply) || (ReplyMode == eReplyAll))
1580                 {
1581                         StrBuf *to_rcpt;
1582                         if ((StrLength(replyto) > 0) && (ReplyMode == eReplyAll)) {
1583                                 to_rcpt = NewStrBuf();
1584                                 StrBufAppendBuf(to_rcpt, replyto, 0);
1585                         }
1586                         else if (StrLength(rfca) > 0) {
1587                                 to_rcpt = NewStrBuf();
1588                                 StrBufAppendBuf(to_rcpt, from, 0);
1589                                 StrBufAppendBufPlain(to_rcpt, HKEY(" <"), 0);
1590                                 StrBufAppendBuf(to_rcpt, rfca, 0);
1591                                 StrBufAppendBufPlain(to_rcpt, HKEY(">"), 0);
1592                         }
1593                         else {
1594                                 to_rcpt =  from;
1595                                 from = NULL;
1596                                 if (    (StrLength(node) > 0)
1597                                         && (strcasecmp(ChrPtr(node), ChrPtr(WCC->serv_info->serv_nodename)))
1598                                 ) {
1599                                         StrBufAppendBufPlain(to_rcpt, HKEY(" @ "), 0);
1600                                         StrBufAppendBuf(to_rcpt, node, 0);
1601                                 }
1602                         }
1603                         PutBstr(HKEY("recp"), to_rcpt);
1604                 }
1605
1606                 /*
1607                  * Only if this is a ReplyAll, copy all recipients into the Cc: field
1608                  */
1609                 if (ReplyMode == eReplyAll)
1610                 {
1611                         StrBuf *cc_rcpt = rcpt;
1612                         rcpt = NULL;
1613                         if ((StrLength(cccc) > 0) && (StrLength(replyto) == 0))
1614                         {
1615                                 if (cc_rcpt != NULL)  {
1616                                         StrBufAppendPrintf(cc_rcpt, ", ");
1617                                         StrBufAppendBuf(cc_rcpt, cccc, 0);
1618                                 } else {
1619                                         cc_rcpt = cccc;
1620                                         cccc = NULL;
1621                                 }
1622                         }
1623                         if (cc_rcpt != NULL)
1624                                 PutBstr(HKEY("cc"), cc_rcpt);
1625                 }
1626                 FreeStrBuf(&wefw);
1627                 FreeStrBuf(&msgn);
1628                 FreeStrBuf(&from);
1629                 FreeStrBuf(&node);
1630                 FreeStrBuf(&rfca);
1631                 FreeStrBuf(&rcpt);
1632                 FreeStrBuf(&cccc);
1633         }
1634         FreeStrBuf(&Line);
1635         /*
1636          * Otherwise proceed normally.
1637          * Do a custom room banner with no navbar...
1638          */
1639
1640         if (recipient_required) {
1641                 const StrBuf *Recp = NULL; 
1642                 const StrBuf *Cc = NULL;
1643                 const StrBuf *Bcc = NULL;
1644                 char *wikipage = NULL;
1645                 StrBuf *CmdBuf = NULL;
1646                 const char CMD[] = "ENT0 0|%s|%d|0||%s||%s|%s|%s";
1647                 
1648                 Recp = sbstr("recp");
1649                 Cc = sbstr("cc");
1650                 Bcc = sbstr("bcc");
1651                 wikipage = strdup(bstr("page"));
1652                 str_wiki_index(wikipage);
1653                 
1654                 CmdBuf = NewStrBufPlain(NULL, 
1655                                         sizeof (CMD) + 
1656                                         StrLength(Recp) + 
1657                                         StrLength(display_name) +
1658                                         StrLength(Cc) +
1659                                         StrLength(Bcc) + 
1660                                         strlen(wikipage));
1661
1662                 StrBufPrintf(CmdBuf, 
1663                              CMD,
1664                              ChrPtr(Recp), 
1665                              is_anonymous,
1666                              ChrPtr(display_name),
1667                              ChrPtr(Cc), 
1668                              ChrPtr(Bcc), 
1669                              wikipage
1670                 );
1671                 serv_puts(ChrPtr(CmdBuf));
1672                 StrBuf_ServGetln(CmdBuf);
1673                 free(wikipage);
1674
1675                 rc = GetServerStatusMsg(CmdBuf, &Result, 0, 0);
1676
1677                 if (    (Result == 570)         /* invalid or missing recipient(s) */
1678                         || (Result == 550)      /* higher access required to send Internet mail */
1679                 ) {
1680                         /* These errors will have been displayed and are excusable */
1681                 }
1682                 else if (rc != 2) {     /* Any other error means that we cannot continue */
1683                         AppendImportantMessage(ChrPtr(CmdBuf) + 4, StrLength(CmdBuf) - 4);
1684                         FreeStrBuf(&CmdBuf);
1685                         fixview();
1686                         readloop(readnew, eUseDefault);
1687                         return;
1688                 }
1689                 FreeStrBuf(&CmdBuf);
1690         }
1691         if (recipient_required)
1692                 PutBstr(HKEY("__RCPTREQUIRED"), NewStrBufPlain(HKEY("1")));
1693         if (recipient_required || subject_required)
1694                 PutBstr(HKEY("__SUBJREQUIRED"), NewStrBufPlain(HKEY("1")));
1695
1696         begin_burst();
1697         output_headers(1, 0, 0, 0, 1, 0);
1698         DoTemplate(HKEY("edit_message"), NULL, &NoCtx);
1699         end_burst();
1700
1701         return;
1702 }
1703
1704 /*
1705  * delete a message
1706  */
1707 void delete_msg(void)
1708 {
1709         long msgid;
1710         StrBuf *Line;
1711         
1712         msgid = lbstr("msgid");
1713         Line = NewStrBuf();
1714         if ((WC->CurRoom.RAFlags & UA_ISTRASH) != 0) {  /* Delete from Trash is a real delete */
1715                 serv_printf("DELE %ld", msgid); 
1716         }
1717         else {                  /* Otherwise move it to Trash */
1718                 serv_printf("MOVE %ld|_TRASH_|0", msgid);
1719         }
1720
1721         StrBuf_ServGetln(Line);
1722         GetServerStatusMsg(Line, NULL, 1, 0);
1723
1724         fixview();
1725
1726         readloop(readnew, eUseDefault);
1727 }
1728
1729
1730 /*
1731  * move a message to another room
1732  */
1733 void move_msg(void)
1734 {
1735         long msgid;
1736
1737         msgid = lbstr("msgid");
1738
1739         if (havebstr("move_button")) {
1740                 StrBuf *Line;
1741                 serv_printf("MOVE %ld|%s", msgid, bstr("target_room"));
1742                 Line = NewStrBuf();
1743                 StrBuf_ServGetln(Line);
1744                 GetServerStatusMsg(Line, NULL, 1, 0);
1745                 FreeStrBuf(&Line);
1746         } else {
1747                 AppendImportantMessage(_("The message was not moved."), -1);
1748         }
1749
1750         fixview();
1751         readloop(readnew, eUseDefault);
1752 }
1753
1754
1755
1756 /*
1757  * Generic function to output an arbitrary MIME attachment from
1758  * message being composed
1759  *
1760  * partnum              The MIME part to be output
1761  * filename             Fake filename to give
1762  * force_download       Nonzero to force set the Content-Type: header to "application/octet-stream"
1763  */
1764 void postpart(StrBuf *partnum, StrBuf *filename, int force_download)
1765 {
1766         void *vPart;
1767         StrBuf *content_type;
1768         wc_mime_attachment *part;
1769         int i;
1770
1771         i = StrToi(partnum);
1772         if (GetHash(WC->attachments, IKEY(i), &vPart) &&
1773             (vPart != NULL)) {
1774                 part = (wc_mime_attachment*) vPart;
1775                 if (force_download) {
1776                         content_type = NewStrBufPlain(HKEY("application/octet-stream"));
1777                 }
1778                 else {
1779                         content_type = NewStrBufDup(part->ContentType);
1780                 }
1781                 StrBufAppendBuf(WC->WBuf, part->Data, 0);
1782                 http_transmit_thing(ChrPtr(content_type), 0);
1783         } else {
1784                 hprintf("HTTP/1.1 404 %s\n", ChrPtr(partnum));
1785                 output_headers(0, 0, 0, 0, 0, 0);
1786                 hprintf("Content-Type: text/plain\r\n");
1787                 begin_burst();
1788                 wc_printf(_("An error occurred while retrieving this part: %s/%s\n"), 
1789                         ChrPtr(partnum), ChrPtr(filename));
1790                 end_burst();
1791         }
1792         FreeStrBuf(&content_type);
1793 }
1794
1795
1796 /*
1797  * Generic function to output an arbitrary MIME part from an arbitrary
1798  * message number on the server.
1799  *
1800  * msgnum               Number of the item on the citadel server
1801  * partnum              The MIME part to be output
1802  * force_download       Nonzero to force set the Content-Type: header to "application/octet-stream"
1803  */
1804 void mimepart(int force_download)
1805 {
1806         long msgnum;
1807         long ErrorDetail;
1808         StrBuf *att;
1809         wcsession *WCC = WC;
1810         StrBuf *Buf;
1811         off_t bytes;
1812         StrBuf *ContentType = NewStrBufPlain(HKEY("application/octet-stream"));
1813         const char *CT;
1814
1815         att = Buf = NewStrBuf();
1816         msgnum = StrBufExtract_long(WCC->Hdr->HR.ReqLine, 0, '/');
1817         StrBufExtract_token(att, WCC->Hdr->HR.ReqLine, 1, '/');
1818
1819         serv_printf("OPNA %ld|%s", msgnum, ChrPtr(att));
1820         StrBuf_ServGetln(Buf);
1821         if (GetServerStatus(Buf, &ErrorDetail) == 2) {
1822                 StrBufCutLeft(Buf, 4);
1823                 bytes = StrBufExtract_long(Buf, 0, '|');
1824                 if (!force_download) {
1825                         StrBufExtract_token(ContentType, Buf, 3, '|');
1826                 }
1827
1828                 serv_read_binary(WCC->WBuf, bytes, Buf);
1829                 serv_puts("CLOS");
1830                 StrBuf_ServGetln(Buf);
1831                 CT = ChrPtr(ContentType);
1832
1833                 if (!force_download) {
1834                         if (!strcasecmp(ChrPtr(ContentType), "application/octet-stream")) {
1835                                 StrBufExtract_token(Buf, WCC->Hdr->HR.ReqLine, 2, '/');
1836                                 CT = GuessMimeByFilename(SKEY(Buf));
1837                         }
1838                         if (!strcasecmp(ChrPtr(ContentType), "application/octet-stream")) {
1839                                 CT = GuessMimeType(SKEY(WCC->WBuf));
1840                         }
1841                 }
1842                 http_transmit_thing(CT, 0);
1843         } else {
1844                 StrBufCutLeft(Buf, 4);
1845                 switch (ErrorDetail) {
1846                 default:
1847                 case ERROR + MESSAGE_NOT_FOUND:
1848                         hprintf("HTTP/1.1 404 %s\n", ChrPtr(Buf));
1849                         break;
1850                 case ERROR + NOT_LOGGED_IN:
1851                         hprintf("HTTP/1.1 401 %s\n", ChrPtr(Buf));
1852                         break;
1853
1854                 case ERROR + HIGHER_ACCESS_REQUIRED:
1855                         hprintf("HTTP/1.1 403 %s\n", ChrPtr(Buf));
1856                         break;
1857                 case ERROR + INTERNAL_ERROR:
1858                 case ERROR + TOO_BIG:
1859                         hprintf("HTTP/1.1 500 %s\n", ChrPtr(Buf));
1860                         break;
1861                 }
1862                 output_headers(0, 0, 0, 0, 0, 0);
1863                 hprintf("Content-Type: text/plain\r\n");
1864                 begin_burst();
1865                 wc_printf(_("An error occurred while retrieving this part: %s\n"), 
1866                         ChrPtr(Buf));
1867                 end_burst();
1868         }
1869         FreeStrBuf(&ContentType);
1870         FreeStrBuf(&Buf);
1871 }
1872
1873
1874 /*
1875  * Read any MIME part of a message, from the server, into memory.
1876  */
1877 StrBuf *load_mimepart(long msgnum, char *partnum)
1878 {
1879         off_t bytes;
1880         StrBuf *Buf;
1881         
1882         Buf = NewStrBuf();
1883         serv_printf("DLAT %ld|%s", msgnum, partnum);
1884         StrBuf_ServGetln(Buf);
1885         if (GetServerStatus(Buf, NULL) == 6) {
1886                 StrBufCutLeft(Buf, 4);
1887                 bytes = StrBufExtract_long(Buf, 0, '|');
1888                 FreeStrBuf(&Buf);
1889                 Buf = NewStrBuf();
1890                 StrBuf_ServGetBLOBBuffered(Buf, bytes);
1891                 return(Buf);
1892         }
1893         else {
1894                 FreeStrBuf(&Buf);
1895                 return(NULL);
1896         }
1897 }
1898
1899 /*
1900  * Read any MIME part of a message, from the server, into memory.
1901  */
1902 void MimeLoadData(wc_mime_attachment *Mime)
1903 {
1904         StrBuf *Buf;
1905         const char *Ptr;
1906         off_t bytes;
1907         /* TODO: is there a chance the content type is different from the one we know? */
1908
1909         serv_printf("DLAT %ld|%s", Mime->msgnum, ChrPtr(Mime->PartNum));
1910         Buf = NewStrBuf();
1911         StrBuf_ServGetln(Buf);
1912         if (GetServerStatus(Buf, NULL) == 6) {
1913                 Ptr = &(ChrPtr(Buf)[4]);
1914                 bytes = StrBufExtractNext_long(Buf, &Ptr, '|');
1915                 StrBufSkip_NTokenS(Buf, &Ptr, '|', 3);  /* filename, cbtype, mimetype */
1916                 if (Mime->Charset == NULL) Mime->Charset = NewStrBuf();
1917                 StrBufExtract_NextToken(Mime->Charset, Buf, &Ptr, '|');
1918                 
1919                 if (Mime->Data == NULL)
1920                         Mime->Data = NewStrBufPlain(NULL, bytes);
1921                 StrBuf_ServGetBLOBBuffered(Mime->Data, bytes);
1922         }
1923         else {
1924                 FlushStrBuf(Mime->Data);
1925                 /* TODO XImportant message */
1926         }
1927         FreeStrBuf(&Buf);
1928 }
1929
1930
1931 void view_mimepart(void) {
1932         mimepart(0);
1933 }
1934
1935 void download_mimepart(void) {
1936         mimepart(1);
1937 }
1938
1939 void view_postpart(void) {
1940         StrBuf *filename = NewStrBuf();
1941         StrBuf *partnum = NewStrBuf();
1942
1943         StrBufExtract_token(partnum, WC->Hdr->HR.ReqLine, 0, '/');
1944         StrBufExtract_token(filename, WC->Hdr->HR.ReqLine, 1, '/');
1945
1946         postpart(partnum, filename, 0);
1947
1948         FreeStrBuf(&filename);
1949         FreeStrBuf(&partnum);
1950 }
1951
1952 void download_postpart(void) {
1953         StrBuf *filename = NewStrBuf();
1954         StrBuf *partnum = NewStrBuf();
1955
1956         StrBufExtract_token(partnum, WC->Hdr->HR.ReqLine, 0, '/');
1957         StrBufExtract_token(filename, WC->Hdr->HR.ReqLine, 1, '/');
1958
1959         postpart(partnum, filename, 1);
1960
1961         FreeStrBuf(&filename);
1962         FreeStrBuf(&partnum);
1963 }
1964
1965
1966
1967 void show_num_attachments(void) {
1968         wc_printf("%d", GetCount(WC->attachments));
1969 }
1970
1971
1972 void h_readnew(void) { readloop(readnew, eUseDefault);}
1973 void h_readold(void) { readloop(readold, eUseDefault);}
1974 void h_readfwd(void) { readloop(readfwd, eUseDefault);}
1975 void h_headers(void) { readloop(headers, eUseDefault);}
1976 void h_do_search(void) { readloop(do_search, eUseDefault);}
1977 void h_readgt(void) { readloop(readgt, eUseDefault);}
1978 void h_readlt(void) { readloop(readlt, eUseDefault);}
1979
1980
1981
1982 /* Output message list in JSON format */
1983 void jsonMessageList(void) {
1984         StrBuf *View = NewStrBuf();
1985         const StrBuf *room = sbstr("room");
1986         long oper = (havebstr("query")) ? do_search : readnew;
1987         StrBufPrintf(View, "%d", VIEW_JSON_LIST);
1988         putbstr("view", View);; 
1989         gotoroom(room);
1990         readloop(oper, eUseDefault);
1991 }
1992
1993 void RegisterReadLoopHandlerset(
1994         int RoomType,
1995         GetParamsGetServerCall_func GetParamsGetServerCall,
1996         PrintViewHeader_func PrintPageHeader,
1997         PrintViewHeader_func PrintViewHeader,
1998         load_msg_ptrs_detailheaders LH,
1999         LoadMsgFromServer_func LoadMsgFromServer,
2000         RenderView_or_Tail_func RenderView_or_Tail,
2001         View_Cleanup_func ViewCleanup
2002         )
2003 {
2004         RoomRenderer *Handler;
2005
2006         Handler = (RoomRenderer*) malloc(sizeof(RoomRenderer));
2007
2008         Handler->RoomType = RoomType;
2009         Handler->GetParamsGetServerCall = GetParamsGetServerCall;
2010         Handler->PrintPageHeader = PrintPageHeader;
2011         Handler->PrintViewHeader = PrintViewHeader;
2012         Handler->LoadMsgFromServer = LoadMsgFromServer;
2013         Handler->RenderView_or_Tail = RenderView_or_Tail;
2014         Handler->ViewCleanup = ViewCleanup;
2015         Handler->LHParse = LH;
2016
2017         Put(ReadLoopHandler, IKEY(RoomType), Handler, NULL);
2018 }
2019
2020 void 
2021 InitModule_MSG
2022 (void)
2023 {
2024         RegisterPreference("use_sig",
2025                            _("Attach signature to email messages?"), 
2026                            PRF_YESNO, 
2027                            NULL);
2028         RegisterPreference("signature", _("Use this signature:"), PRF_QP_STRING, NULL);
2029         RegisterPreference("default_header_charset", 
2030                            _("Default character set for email headers:"), 
2031                            PRF_STRING, 
2032                            NULL);
2033         RegisterPreference("defaultfrom", _("Preferred email address"), PRF_STRING, NULL);
2034         RegisterPreference("defaultname", 
2035                            _("Preferred display name for email messages"), 
2036                            PRF_STRING, 
2037                            NULL);
2038         RegisterPreference("defaulthandle", 
2039                            _("Preferred display name for bulletin board posts"), 
2040                            PRF_STRING, 
2041                            NULL);
2042         RegisterPreference("mailbox",_("Mailbox view mode"), PRF_STRING, NULL);
2043
2044         WebcitAddUrlHandler(HKEY("readnew"), "", 0, h_readnew, ANONYMOUS|NEED_URL);
2045         WebcitAddUrlHandler(HKEY("readold"), "", 0, h_readold, ANONYMOUS|NEED_URL);
2046         WebcitAddUrlHandler(HKEY("readfwd"), "", 0, h_readfwd, ANONYMOUS|NEED_URL);
2047         WebcitAddUrlHandler(HKEY("headers"), "", 0, h_headers, NEED_URL);
2048         WebcitAddUrlHandler(HKEY("readgt"), "", 0, h_readgt, ANONYMOUS|NEED_URL);
2049         WebcitAddUrlHandler(HKEY("readlt"), "", 0, h_readlt, ANONYMOUS|NEED_URL);
2050         WebcitAddUrlHandler(HKEY("do_search"), "", 0, h_do_search, 0);
2051         WebcitAddUrlHandler(HKEY("display_enter"), "", 0, display_enter, 0);
2052         WebcitAddUrlHandler(HKEY("post"), "", 0, post_message, PROHIBIT_STARTPAGE);
2053         WebcitAddUrlHandler(HKEY("move_msg"), "", 0, move_msg, PROHIBIT_STARTPAGE);
2054         WebcitAddUrlHandler(HKEY("delete_msg"), "", 0, delete_msg, PROHIBIT_STARTPAGE);
2055         WebcitAddUrlHandler(HKEY("msg"), "", 0, embed_message, NEED_URL);
2056         WebcitAddUrlHandler(HKEY("message"), "", 0, handle_one_message, NEED_URL|XHTTP_COMMANDS|COOKIEUNNEEDED|FORCE_SESSIONCLOSE);
2057         WebcitAddUrlHandler(HKEY("printmsg"), "", 0, print_message, NEED_URL);
2058         WebcitAddUrlHandler(HKEY("msgheaders"), "", 0, display_headers, NEED_URL);
2059
2060         WebcitAddUrlHandler(HKEY("mimepart"), "", 0, view_mimepart, NEED_URL);
2061         WebcitAddUrlHandler(HKEY("mimepart_download"), "", 0, download_mimepart, NEED_URL);
2062         WebcitAddUrlHandler(HKEY("postpart"), "", 0, view_postpart, NEED_URL|PROHIBIT_STARTPAGE);
2063         WebcitAddUrlHandler(HKEY("postpart_download"), "", 0, download_postpart, NEED_URL|PROHIBIT_STARTPAGE);
2064         WebcitAddUrlHandler(HKEY("upload_attachment"), "", 0, upload_attachment, AJAX);
2065         WebcitAddUrlHandler(HKEY("remove_attachment"), "", 0, remove_attachment, AJAX);
2066         WebcitAddUrlHandler(HKEY("show_num_attachments"), "", 0, show_num_attachments, AJAX);
2067
2068         /* json */
2069         WebcitAddUrlHandler(HKEY("roommsgs"), "", 0, jsonMessageList,0);
2070
2071         l_subj = FourHash("subj", 4);
2072         l_wefw = FourHash("wefw", 4);
2073         l_msgn = FourHash("msgn", 4);
2074         l_from = FourHash("from", 4);
2075         l_rcpt = FourHash("rcpt", 4);
2076         l_cccc = FourHash("cccc", 4);
2077         l_replyto = FourHash("rep2", 4);
2078         l_node = FourHash("node", 4);
2079         l_rfca = FourHash("rfca", 4);
2080         l_nvto = FourHash("nvto", 4);
2081
2082         return ;
2083 }
2084
2085 void
2086 SessionDetachModule_MSG
2087 (wcsession *sess)
2088 {
2089         DeleteHash(&sess->summ);
2090 }