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