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