* fix some conditions with unassigned variable access
[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
16 #define SUBJ_COL_WIDTH_PCT              50      /**< Mailbox view column width */
17 #define SENDER_COL_WIDTH_PCT            30      /**< Mailbox view column width */
18 #define DATE_PLUS_BUTTONS_WIDTH_PCT     20      /**< Mailbox view column width */
19
20
21
22 void display_enter(void);
23 int longcmp_r(const void *s1, const void *s2);
24 int summcmp_subj(const void *s1, const void *s2);
25 int summcmp_rsubj(const void *s1, const void *s2);
26 int summcmp_sender(const void *s1, const void *s2);
27 int summcmp_rsender(const void *s1, const void *s2);
28 int summcmp_date(const void *s1, const void *s2);
29 int summcmp_rdate(const void *s1, const void *s2);
30
31 /*----------------------------------------------------------------------------*/
32
33
34 typedef void (*MsgPartEvaluatorFunc)(message_summary *Sum, StrBuf *Buf);
35
36
37
38 /*----------------------------------------------------------------------------*/
39
40
41
42 /*
43  * I wanna SEE that message!
44  *
45  * msgnum               Message number to display
46  * printable_view       Nonzero to display a printable view
47  * section              Optional for encapsulated message/rfc822 submessage
48  */
49 int read_message(StrBuf *Target, const char *tmpl, long tmpllen, long msgnum, int printable_view, const StrBuf *PartNum) {
50         StrBuf *Buf;
51         StrBuf *HdrToken;
52         StrBuf *FoundCharset;
53         HashPos  *it;
54         void *vMime;
55         message_summary *Msg = NULL;
56         headereval *Hdr;
57         void *vHdr;
58         char buf[SIZ];
59         int Done = 0;
60         int state=0;
61         long len;
62         const char *Key;
63
64         Buf = NewStrBuf();
65         lprintf(1, "----------%s---------MSG4 %ld|%s--------------\n", tmpl, msgnum, ChrPtr(PartNum));
66         serv_printf("MSG4 %ld|%s", msgnum, ChrPtr(PartNum));
67         StrBuf_ServGetln(Buf);
68         if (GetServerStatus(Buf, NULL) != 1) {
69                 StrBufAppendPrintf(Target, "<strong>");
70                 StrBufAppendPrintf(Target, _("ERROR:"));
71                 StrBufAppendPrintf(Target, "</strong> %s<br />\n", &buf[4]);
72                 FreeStrBuf(&Buf);
73                 return 0;
74         }
75
76         /** begin everythingamundo table */
77
78
79         HdrToken = NewStrBuf();
80         Msg = (message_summary *)malloc(sizeof(message_summary));
81         memset(Msg, 0, sizeof(message_summary));
82         Msg->msgnum = msgnum;
83         Msg->PartNum = PartNum;
84         Msg->MsgBody =  (wc_mime_attachment*) malloc(sizeof(wc_mime_attachment));
85         memset(Msg->MsgBody, 0, sizeof(wc_mime_attachment));
86         FoundCharset = NewStrBuf();
87         while ((StrBuf_ServGetln(Buf)>=0) && !Done) {
88                 if ( (StrLength(Buf)==3) && 
89                     !strcmp(ChrPtr(Buf), "000")) 
90                 {
91                         Done = 1;
92                         if (state < 2) {
93                                 lprintf(1, _("unexpected end of message"));
94                                 
95                                 Msg->MsgBody->ContentType = NewStrBufPlain(HKEY("text/html"));
96                                 StrBufAppendPrintf(Msg->MsgBody->Data, "<div><i>");
97                                 StrBufAppendPrintf(Msg->MsgBody->Data, _("unexpected end of message"));
98                                 StrBufAppendPrintf(Msg->MsgBody->Data, " (1)</i><br /><br />\n");
99                                 StrBufAppendPrintf(Msg->MsgBody->Data, "</div>\n");
100                         }
101                         break;
102                 }
103                 switch (state) {
104                 case 0:/* Citadel Message Headers */
105                         if (StrLength(Buf) == 0) {
106                                 state ++;
107                                 break;
108                         }
109                         StrBufExtract_token(HdrToken, Buf, 0, '=');
110                         StrBufCutLeft(Buf, StrLength(HdrToken) + 1);
111                         
112                         lprintf(1, ":: [%s] = [%s]\n", ChrPtr(HdrToken), ChrPtr(Buf));
113                         /* look up one of the examine_* functions to parse the content */
114                         if (GetHash(MsgHeaderHandler, SKEY(HdrToken), &vHdr) &&
115                             (vHdr != NULL)) {
116                                 Hdr = (headereval*)vHdr;
117                                 Hdr->evaluator(Msg, Buf, FoundCharset);
118                                 if (Hdr->Type == 1) {
119                                         state++;
120                                 }
121                         }
122                         else lprintf(1, "don't know how to handle message header[%s]\n", ChrPtr(HdrToken));
123                         break;
124                 case 1:/* Message Mime Header */
125                         if (StrLength(Buf) == 0) {
126                                 state++;
127                                 if (Msg->MsgBody->ContentType == NULL)
128                                         /* end of header or no header? */
129                                         Msg->MsgBody->ContentType = NewStrBufPlain(HKEY("text/plain"));
130                                  /* usual end of mime header */
131                         }
132                         else
133                         {
134                                 StrBufExtract_token(HdrToken, Buf, 0, ':');
135                                 if (StrLength(HdrToken) > 0) {
136                                         StrBufCutLeft(Buf, StrLength(HdrToken) + 1);
137                                         lprintf(1, ":: [%s] = [%s]\n", ChrPtr(HdrToken), ChrPtr(Buf));
138                                         /* the examine*'s know how to do with mime headers too... */
139                                         if (GetHash(MsgHeaderHandler, SKEY(HdrToken), &vHdr) &&
140                                             (vHdr != NULL)) {
141                                                 Hdr = (headereval*)vHdr;
142                                                 Hdr->evaluator(Msg, Buf, FoundCharset);
143                                         }
144                                         break;
145                                 }
146                         }
147                 case 2: /* Message Body */
148                         
149                         if (Msg->MsgBody->size_known > 0) {
150                                 StrBuf_ServGetBLOB(Msg->MsgBody->Data, Msg->MsgBody->length);
151                                 state ++;
152                                         /// todo: check next line, if not 000, append following lines
153                         }
154                         else if (1){
155                                 if (StrLength(Msg->MsgBody->Data) > 0)
156                                         StrBufAppendBufPlain(Msg->MsgBody->Data, "\n", 1, 0);
157                                 StrBufAppendBuf(Msg->MsgBody->Data, Buf, 0);
158                         }
159                         break;
160                 case 3:
161                         StrBufAppendBuf(Msg->MsgBody->Data, Buf, 0);
162                         break;
163                 }
164         }
165
166         if (Msg->AllAttach == NULL)
167                 Msg->AllAttach = NewHash(1,NULL);
168         /* now we put the body mimepart we read above into the mimelist */
169         Put(Msg->AllAttach, SKEY(Msg->MsgBody->PartNum), Msg->MsgBody, DestroyMime);
170         
171         /* strip the bare contenttype, so we ommit charset etc. */
172         StrBufExtract_token(Buf, Msg->MsgBody->ContentType, 0, ';');
173         StrBufTrim(Buf);
174         /* look up the renderer, that will convert this mimeitem into the htmlized form */
175         if (GetHash(MimeRenderHandler, SKEY(Buf), &vHdr) &&
176             (vHdr != NULL)) {
177                 RenderMimeFunc Render;
178                 Render = (RenderMimeFunc)vHdr;
179                 Render(Msg->MsgBody, NULL, FoundCharset);
180         }
181
182         if (StrLength(Msg->reply_references)> 0) {
183                 /* Trim down excessively long lists of thread references.  We eliminate the
184                  * second one in the list so that the thread root remains intact.
185                  */
186                 int rrtok = num_tokens(ChrPtr(Msg->reply_references), '|');
187                 int rrlen = StrLength(Msg->reply_references);
188                 if ( ((rrtok >= 3) && (rrlen > 900)) || (rrtok > 10) ) {
189                         StrBufRemove_token(Msg->reply_references, 1, '|');
190                 }
191         }
192
193         /* Generate a reply-to address */
194         if (StrLength(Msg->Rfca) > 0) {
195                 if (Msg->reply_to == NULL)
196                         Msg->reply_to = NewStrBuf();
197                 if (StrLength(Msg->from) > 0) {
198                         StrBufPrintf(Msg->reply_to, "%s <%s>", ChrPtr(Msg->from), ChrPtr(Msg->Rfca));
199                 }
200                 else {
201                         FlushStrBuf(Msg->reply_to);
202                         StrBufAppendBuf(Msg->reply_to, Msg->Rfca, 0);
203                 }
204         }
205         else 
206         {
207                 if ((StrLength(Msg->OtherNode)>0) && 
208                     (strcasecmp(ChrPtr(Msg->OtherNode), serv_info.serv_nodename)) &&
209                     (strcasecmp(ChrPtr(Msg->OtherNode), serv_info.serv_humannode)) ) 
210                 {
211                         if (Msg->reply_to == NULL)
212                                 Msg->reply_to = NewStrBuf();
213                         StrBufPrintf(Msg->reply_to, 
214                                      "%s @ %s",
215                                      ChrPtr(Msg->from), 
216                                      ChrPtr(Msg->OtherNode));
217                 }
218                 else {
219                         if (Msg->reply_to == NULL)
220                                 Msg->reply_to = NewStrBuf();
221                         FlushStrBuf(Msg->reply_to);
222                         StrBufAppendBuf(Msg->reply_to, Msg->from, 0);
223                 }
224         }
225
226         /* now check if we need to translate some mimeparts, and remove the duplicate */
227         it = GetNewHashPos(Msg->AllAttach, 0);
228         while (GetNextHashPos(Msg->AllAttach, it, &len, &Key, &vMime) && 
229                (vMime != NULL)) {
230                 wc_mime_attachment *Mime = (wc_mime_attachment*) vMime;
231                 evaluate_mime_part(Msg, Mime);
232         }
233         DeleteHashPos(&it);
234
235         DoTemplate(tmpl, tmpllen, Target, Msg, CTX_MAILSUM);
236
237         DestroyMessageSummary(Msg);
238         FreeStrBuf(&FoundCharset);
239         FreeStrBuf(&HdrToken);
240         FreeStrBuf(&Buf);
241         return 1;
242 }
243
244
245
246 /*
247  * Unadorned HTML output of an individual message, suitable
248  * for placing in a hidden iframe, for printing, or whatever
249  *
250  * msgnum_as_string == Message number, as a string instead of as a long int
251  */
252 void embed_message(void) {
253         long msgnum = 0L;
254         const StrBuf *Tmpl = sbstr("template");
255
256         msgnum = StrTol(WC->UrlFragment2);
257         if (StrLength(Tmpl) > 0) 
258                 read_message(WC->WBuf, SKEY(Tmpl), msgnum, 0, NULL);
259         else 
260                 read_message(WC->WBuf, HKEY("view_message"), msgnum, 0, NULL);
261 }
262
263
264 /*
265  * Printable view of a message
266  *
267  * msgnum_as_string == Message number, as a string instead of as a long int
268  */
269 void print_message(void) {
270         long msgnum = 0L;
271
272         msgnum = StrTol(WC->UrlFragment2);
273         output_headers(0, 0, 0, 0, 0, 0);
274
275         hprintf("Content-type: text/html\r\n"
276                 "Server: " PACKAGE_STRING "\r\n"
277                 "Connection: close\r\n");
278
279         begin_burst();
280
281         read_message(WC->WBuf, HKEY("view_message_print"), msgnum, 1, NULL);
282
283         wDumpContent(0);
284 }
285
286 /* 
287  * Mobile browser view of message
288  *
289  * @param msg_num_as_string Message number as a string instead of as a long int 
290  */
291 void mobile_message_view(void) {
292   long msgnum = 0L;
293   msgnum = StrTol(WC->UrlFragment2);
294   output_headers(1, 0, 0, 0, 0, 1);
295   begin_burst();
296   do_template("msgcontrols", NULL);
297   read_message(WC->WBuf, HKEY("view_message"), msgnum,1, NULL);
298   wDumpContent(0);
299 }
300
301 /**
302  * \brief Display a message's headers
303  *
304  * \param msgnum_as_string Message number, as a string instead of as a long int
305  */
306 void display_headers(void) {
307         long msgnum = 0L;
308         char buf[1024];
309
310         msgnum = StrTol(WC->UrlFragment2);
311         output_headers(0, 0, 0, 0, 0, 0);
312
313         hprintf("Content-type: text/plain\r\n"
314                 "Server: %s\r\n"
315                 "Connection: close\r\n",
316                 PACKAGE_STRING);
317         begin_burst();
318
319         serv_printf("MSG2 %ld|3", msgnum);
320         serv_getln(buf, sizeof buf);
321         if (buf[0] == '1') {
322                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
323                         wprintf("%s\n", buf);
324                 }
325         }
326
327         wDumpContent(0);
328 }
329
330
331 message_summary *ReadOneMessageSummary(StrBuf *RawMessage, const char *DefaultSubject, long MsgNum) 
332 {
333         void                 *vEval;
334         MsgPartEvaluatorFunc  Eval;
335         message_summary      *Msg;
336         StrBuf *Buf;
337         const char *buf;
338         const char *ebuf;
339         int nBuf;
340         long len;
341         
342         Buf = NewStrBuf();
343
344         serv_printf("MSG0 %ld|1", MsgNum);      /* ask for headers only */
345         
346         StrBuf_ServGetln(Buf);
347         if (GetServerStatus(Buf, NULL) == 1) {
348                 FreeStrBuf(&Buf);
349                 return NULL;
350         }
351
352         Msg = (message_summary*)malloc(sizeof(message_summary));
353         memset(Msg, 0, sizeof(message_summary));
354         while (len = StrBuf_ServGetln(Buf),
355                ((len != 3)  ||
356                 strcmp(ChrPtr(Buf), "000")== 0)){
357                 buf = ChrPtr(Buf);
358                 ebuf = strchr(ChrPtr(Buf), '=');
359                 nBuf = ebuf - buf;
360                 if (GetHash(MsgEvaluators, buf, nBuf, &vEval) && vEval != NULL) {
361                         Eval = (MsgPartEvaluatorFunc) vEval;
362                         StrBufCutLeft(Buf, nBuf + 1);
363                         Eval(Msg, Buf);
364                 }
365                 else lprintf(1, "Don't know how to handle Message Headerline [%s]", ChrPtr(Buf));
366         }
367         return Msg;
368 }
369
370
371
372
373
374 /*
375  * load message pointers from the server for a "read messages" operation
376  *
377  * servcmd:             the citadel command to send to the citserver
378  * with_headers:        also include some of the headers with the message numbers (more expensive)
379  */
380 int load_msg_ptrs(char *servcmd, int with_headers)
381 {
382         StrBuf* FoundCharset = NULL;
383         wcsession *WCC = WC;
384         message_summary *Msg;
385         StrBuf *Buf, *Buf2;
386         int nummsgs = 0;
387         int maxload = 0;
388         long len;
389         int n;
390
391         if (WCC->summ != NULL) {
392                 if (WCC->summ != NULL)
393                         DeleteHash(&WCC->summ);
394         }
395         WCC->summ = NewHash(1, Flathash);
396         maxload = 10000;
397         
398         Buf = NewStrBuf();
399         serv_puts(servcmd);
400         StrBuf_ServGetln(Buf);
401         if (GetServerStatus(Buf, NULL) != 1) {
402                 FreeStrBuf(&Buf);
403                 return (nummsgs);
404         }
405 // TODO                         if (with_headers) { //// TODO: Have Attachments?
406         Buf2 = NewStrBuf();
407         while (len = StrBuf_ServGetln(Buf),
408                ((len != 3)  ||
409                 strcmp(ChrPtr(Buf), "000")!= 0))
410         {
411                 if (nummsgs < maxload) {
412                         Msg = (message_summary*)malloc(sizeof(message_summary));
413                         memset(Msg, 0, sizeof(message_summary));
414
415                         Msg->msgnum = StrBufExtract_long(Buf, 0, '|');
416                         Msg->date = StrBufExtract_long(Buf, 1, '|');
417
418                         Msg->from = NewStrBufPlain(NULL, StrLength(Buf));
419                         StrBufExtract_token(Buf2, Buf, 2, '|');
420                         if (StrLength(Buf2) != 0) {
421                                 /** Handle senders with RFC2047 encoding */
422                                 StrBuf_RFC822_to_Utf8(Msg->from, Buf2, WCC->DefaultCharset, FoundCharset);
423                         }
424                         
425                         /** Nodename */
426                         StrBufExtract_token(Buf2, Buf, 3, '|');
427                         if ((StrLength(Buf2) !=0 ) &&
428                             ( ((WCC->room_flags & QR_NETWORK)
429                                || ((strcasecmp(ChrPtr(Buf2), serv_info.serv_nodename)
430                                     && (strcasecmp(ChrPtr(Buf2), serv_info.serv_fqdn)))))))
431                         {
432                                 StrBufAppendBufPlain(Msg->from, HKEY(" @ "), 0);
433                                 StrBufAppendBuf(Msg->from, Buf2, 0);
434                         }
435
436                         /** Not used:
437                         StrBufExtract_token(Msg->inetaddr, Buf, 4, '|');
438                         */
439
440                         Msg->subj = NewStrBufPlain(NULL, StrLength(Buf));
441                         StrBufExtract_token(Buf2,  Buf, 5, '|');
442                         if (StrLength(Buf2) == 0)
443                                 StrBufAppendBufPlain(Msg->subj, _("(no subj)"), 0, -1);
444                         else {
445                                 StrBuf_RFC822_to_Utf8(Msg->subj, Buf2, WCC->DefaultCharset, FoundCharset);
446                                 if ((StrLength(Msg->subj) > 75) && 
447                                     (StrBuf_Utf8StrLen(Msg->subj) > 75)) {
448                                         StrBuf_Utf8StrCut(Msg->subj, 72);
449                                         StrBufAppendBufPlain(Msg->subj, HKEY("..."), 0);
450                                 }
451                         }
452
453
454                         if ((StrLength(Msg->from) > 25) && 
455                             (StrBuf_Utf8StrLen(Msg->from) > 25)) {
456                                 StrBuf_Utf8StrCut(Msg->from, 23);
457                                 StrBufAppendBufPlain(Msg->from, HKEY("..."), 0);
458                         }
459                         n = Msg->msgnum;
460                         Put(WCC->summ, (const char *)&n, sizeof(n), Msg, DestroyMessageSummary);
461                 }
462                 nummsgs++;
463         }
464         FreeStrBuf(&Buf2);
465         FreeStrBuf(&Buf);
466         return (nummsgs);
467 }
468
469
470 inline message_summary* GetMessagePtrAt(int n, HashList *Summ)
471 {
472         const char *Key;
473         long HKLen;
474         void *vMsg;
475
476         if (Summ == NULL)
477                 return NULL;
478         GetHashAt(Summ, n, &HKLen, &Key, &vMsg);
479         return (message_summary*) vMsg;
480 }
481
482
483 void DrawMessageDropdown(StrBuf *Selector, long maxmsgs, long startmsg)
484 {
485         StrBuf *TmpBuf;
486         wcsession *WCC = WC;
487         message_summary* Msg;
488         int lo, hi, n;
489         int i = 0;
490         long StartMsg = 0;
491         void *vMsg;
492         long hklen;
493         const char *key;
494         int done = 0;
495         int nItems;
496         HashPos *At;
497         long vector[16];
498         int nMessages = DEFAULT_MAXMSGS;
499
500         TmpBuf = NewStrBuf();
501         At = GetNewHashPos(WCC->summ, (lbstr("SortOrder") == 1)? -nMessages : nMessages);
502         nItems = GetCount(WCC->summ);
503         
504         vector[0] = 7;
505         vector[1] = startmsg;
506         vector[2] = maxmsgs;
507         vector[3] = 0;
508         vector[4] = 1;
509
510         while (!done) {
511                 lo = GetHashPosCounter(At);
512                 if (lo + nMessages > nItems) {
513                         hi = nItems;
514                 }
515                 else {
516                         hi = lo + nMessages;
517                 }
518                 done = !GetNextHashPos(WCC->summ, At, &hklen, &key, &vMsg);
519                 Msg = (message_summary*) vMsg;
520                 n = (Msg==NULL)? 0 : Msg->msgnum;
521                 if (i == 0)
522                         StartMsg = n;
523                 vector[4] = lo;
524                 vector[5] = hi;
525                 vector[6] = n;
526                 FlushStrBuf(TmpBuf);
527                 DoTemplate(HKEY("select_messageindex"), TmpBuf, &vector, CTX_LONGVECTOR);
528                 StrBufAppendBuf(Selector, TmpBuf, 0);
529                 i++;
530         }
531         vector[6] = StartMsg;
532         FlushStrBuf(TmpBuf);
533         DoTemplate(HKEY("select_messageindex_all"), TmpBuf, &vector, CTX_LONGVECTOR);
534         StrBufAppendBuf(Selector, TmpBuf, 0);
535         FreeStrBuf(&TmpBuf);
536         DeleteHashPos(&At);
537 }
538
539
540 extern readloop_struct rlid[];
541
542 /*
543  * command loop for reading messages
544  *
545  * Set oper to "readnew" or "readold" or "readfwd" or "headers"
546  */
547 void readloop(long oper)
548 {
549         StrBuf *MessageDropdown = NULL;
550         StrBuf *BBViewToolBar = NULL;
551         void *vMsg;
552         message_summary *Msg;
553         char cmd[256] = "";
554         char buf[SIZ];
555         char old_msgs[SIZ];
556         int a = 0;
557         int nummsgs;
558         long startmsg = 0;
559         int maxmsgs = 0;
560         long *displayed_msgs = NULL;
561         int num_displayed = 0;
562         int is_summary = 0;
563         int is_addressbook = 0;
564         int is_singlecard = 0;
565         int is_calendar = 0;
566         struct calview calv;
567         int is_tasks = 0;
568         int is_notes = 0;
569         int is_bbview = 0;
570         int lowest_displayed = (-1);
571         int highest_displayed = 0;
572         addrbookent *addrbook = NULL;
573         int num_ab = 0;
574         int bbs_reverse = 0;
575         wcsession *WCC = WC;
576         HashPos *at;
577         const char *HashKey;
578         long HKLen;
579         int care_for_empty_list = 0;
580         int load_seen = 0;
581         int sortit = 0;
582
583         switch (WCC->wc_view) {
584         case VIEW_WIKI:
585                 sprintf(buf, "wiki?room=%s&page=home", WCC->wc_roomname);
586                 http_redirect(buf);
587                 return;
588         case VIEW_CALENDAR:
589                 load_seen = 1;
590                 is_calendar = 1;
591                 strcpy(cmd, "MSGS ALL|||1");
592                 maxmsgs = 32767;
593                 parse_calendar_view_request(&calv);
594                 break;
595         case VIEW_TASKS:
596                 is_tasks = 1;
597                 strcpy(cmd, "MSGS ALL");
598                 maxmsgs = 32767;
599                 break;
600         case VIEW_NOTES:
601                 is_notes = 1;
602                 strcpy(cmd, "MSGS ALL");
603                 maxmsgs = 32767;
604                 wprintf("<div id=\"new_notes_here\"></div>\n");
605                 break;
606         case VIEW_ADDRESSBOOK:
607                 is_singlecard = ibstr("is_singlecard");
608                 if (maxmsgs > 1) {
609                         is_addressbook = 1;
610                         if (oper == do_search) {
611                                 snprintf(cmd, sizeof(cmd), "MSGS SEARCH|%s", bstr("query"));
612                         }
613                         else {
614                                 strcpy(cmd, "MSGS ALL");
615                         }
616                         maxmsgs = 9999999;
617                         break;
618                 }
619
620         default:
621                 care_for_empty_list = 1;
622                 startmsg = lbstr("startmsg");
623                 if (havebstr("maxmsgs"))
624                         maxmsgs = ibstr("maxmsgs");
625                 is_summary = (ibstr("is_summary") && !WCC->is_mobile);
626                 if (maxmsgs == 0) maxmsgs = DEFAULT_MAXMSGS;
627                 
628
629                 
630                 /*
631                  * When in summary mode, always show ALL messages instead of just
632                  * new or old.  Otherwise, show what the user asked for.
633                  */
634                 rlid[oper].cmd(cmd, sizeof(cmd));
635                 
636                 if ((WCC->wc_view == VIEW_MAILBOX) && (maxmsgs > 1) && !WCC->is_mobile) {
637                         is_summary = 1;
638                         if (oper != do_search) {
639                                 strcpy(cmd, "MSGS ALL");
640                         }
641                 }
642
643                 is_bbview = !is_summary;
644                 if (is_summary) {                       /**< fetch header summary */
645                         load_seen = 1;
646                         snprintf(cmd, sizeof(cmd), "MSGS %s|%s||1",
647                                  (oper == do_search) ? "SEARCH" : "ALL",
648                                  (oper == do_search) ? bstr("query") : ""
649                                 );
650                         startmsg = 1;
651                         maxmsgs = 9999999;
652                 } 
653
654                 bbs_reverse = is_bbview && (lbstr("SortOrder") == 2);
655
656                 sortit = is_summary || WCC->is_mobile;
657         }
658
659
660         output_headers(1, 1, 1, 0, 0, 0);
661
662         /* TODO: how can we best sort this in?
663         if (WCC->is_mobile) {
664                 maxmsgs = 20;
665                 snprintf(cmd, sizeof(cmd), "MSGS %s|%s||1",
666                         (!strcmp(oper, "do_search") ? "SEARCH" : "ALL"),
667                         (!strcmp(oper, "do_search") ? bstr("query") : "")
668                 );
669                 SortBy =  eRDate;
670         }
671         */
672         /*
673          * Are we doing a summary view?  If so, we need to know old messages
674          * and new messages, so we can do that pretty boldface thing for the
675          * new messages.
676          */
677         nummsgs = load_msg_ptrs(cmd, (is_summary || WCC->is_mobile));
678         if (nummsgs == 0) {
679                 if (care_for_empty_list) {
680                         wprintf("<div align=\"center\"><br /><em>");
681                         switch (oper) {
682                         case readnew:
683                                 wprintf(_("No new messages."));
684                                 break;
685                         case readold:
686                                 wprintf(_("No old messages."));
687                                 break;
688                         default:
689                                 wprintf(_("No messages here."));
690                         }
691                         wprintf("</em><br /></div>\n");
692                 }
693
694                 goto DONE;
695         }
696         if (is_bbview && (startmsg == 0L)) {
697                 if (bbs_reverse) {
698                         Msg = GetMessagePtrAt((nummsgs >= maxmsgs) ? (nummsgs - maxmsgs) : 0, WCC->summ);
699                         startmsg = (Msg==NULL)? 0 : Msg->msgnum;
700                 }
701                 else {
702                         Msg = GetMessagePtrAt(0, WCC->summ);
703                         startmsg = (Msg==NULL)? 0 : Msg->msgnum;
704                 }
705         }
706
707         /* This is done to make it run faster; WC is a function */
708         if (load_seen){
709                 void *vMsg;
710
711                 strcpy(old_msgs, "");
712                 serv_puts("GTSN");
713                 serv_getln(buf, sizeof buf);
714                 if (buf[0] == '2') {
715                         strcpy(old_msgs, &buf[4]);
716                 }
717                 at = GetNewHashPos(WCC->summ, 0);
718                 while (GetNextHashPos(WCC->summ, at, &HKLen, &HashKey, &vMsg)) {
719                         /** Are you a new message, or an old message? */
720                         Msg = (message_summary*) vMsg;
721                         if (is_msg_in_mset(old_msgs, Msg->msgnum)) {
722                                 Msg->is_new = 0;
723                         }
724                         else {
725                                 Msg->is_new = 1;
726                         }
727                 }
728                 DeleteHashPos(&at);
729         }
730
731         if (sortit) {
732                 CompareFunc SortIt;
733                 SortIt =  RetrieveSort(CTX_MAILSUM, NULL, 
734                                        HKEY("date"), 2);
735                 if (SortIt != NULL)
736                         SortByPayload(WCC->summ, SortIt);
737         }
738
739         if (is_summary) {
740                 do_template("summary_header", NULL);
741         } else if (WCC->is_mobile) {
742                 wprintf("<div id=\"message_list\">");
743         }
744
745
746         /**
747          * If we're not currently looking at ALL requested
748          * messages, then display the selector bar
749          */
750         if (is_bbview)  {
751                 BBViewToolBar = NewStrBuf();
752                 MessageDropdown = NewStrBuf();
753
754                 DrawMessageDropdown(MessageDropdown, maxmsgs, startmsg);
755                 
756                 DoTemplate(HKEY("msg_listselector_top"), BBViewToolBar, MessageDropdown, CTX_STRBUF);
757                 StrBufAppendBuf(WCC->WBuf, BBViewToolBar, 0);
758                 FlushStrBuf(BBViewToolBar);
759         }
760                         
761         at = GetNewHashPos(WCC->summ, 0);
762         while (GetNextHashPos(WCC->summ, at, &HKLen, &HashKey, &vMsg)) {
763                 Msg = (message_summary*) vMsg;          
764                 if ((Msg->msgnum >= startmsg) && (num_displayed < maxmsgs)) {
765                                 
766                         /** Display the message */
767                         if (is_summary) {
768                                 DoTemplate(HKEY("section_mailsummary"), NULL, Msg, CTX_MAILSUM);
769                         }
770                         else if (is_addressbook) {
771                                 fetch_ab_name(Msg, buf);
772                                 ++num_ab;
773                                 addrbook = realloc(addrbook,
774                                                    (sizeof(addrbookent) * num_ab) );
775                                 safestrncpy(addrbook[num_ab-1].ab_name, buf,
776                                             sizeof(addrbook[num_ab-1].ab_name));
777                                 addrbook[num_ab-1].ab_msgnum = Msg->msgnum;
778                         }
779                         else if (is_calendar) {
780                                 load_calendar_item(Msg, Msg->is_new, &calv);
781                         }
782                         else if (is_tasks) {
783                                 display_task(Msg, Msg->is_new);
784                         }
785                         else if (is_notes) {
786                                 display_note(Msg, Msg->is_new);
787                         } else if (WCC->is_mobile) {
788                                 DoTemplate(HKEY("section_mailsummary"), NULL, Msg, CTX_MAILSUM);
789                         }
790                         else {
791                                 if (displayed_msgs == NULL) {
792                                         displayed_msgs = malloc(sizeof(long) *
793                                                                 (maxmsgs<nummsgs ? maxmsgs : nummsgs));
794                                 }
795                                 displayed_msgs[num_displayed] = Msg->msgnum;
796                         }
797                         
798                         if (lowest_displayed < 0) lowest_displayed = a;
799                         highest_displayed = a;
800                         
801                         ++num_displayed;
802                 }
803         }
804         DeleteHashPos(&at);
805
806         /** Output loop */
807         if (displayed_msgs != NULL) {
808                 if (bbs_reverse) {
809                         ////TODOqsort(displayed_msgs, num_displayed, sizeof(long), qlongcmp_r);
810                 }
811
812                 /** if we do a split bbview in the future, begin messages div here */
813
814                 for (a=0; a<num_displayed; ++a) {
815                         read_message(WC->WBuf, HKEY("view_message"), displayed_msgs[a], 0, NULL);
816                 }
817
818                 /** if we do a split bbview in the future, end messages div here */
819
820                 free(displayed_msgs);
821                 displayed_msgs = NULL;
822         }
823
824         if (is_summary) {
825                 do_template("summary_trailer", NULL);
826         } else if (WCC->is_mobile) {
827                 wprintf("</div>");
828         }
829
830         /**
831          * Bump these because although we're thinking in zero base, the user
832          * is a drooling idiot and is thinking in one base.
833          */
834         ++lowest_displayed;
835         ++highest_displayed;
836
837         /**
838          * If we're not currently looking at ALL requested
839          * messages, then display the selector bar
840          */
841         if (is_bbview) {
842                 /** begin bbview scroller */
843
844                 DoTemplate(HKEY("msg_listselector_bottom"), BBViewToolBar, MessageDropdown, CTX_STRBUF);
845                 StrBufAppendBuf(WCC->WBuf, BBViewToolBar, 0);
846
847                 FreeStrBuf(&BBViewToolBar);
848                 FreeStrBuf(&MessageDropdown);
849         }
850         
851 DONE:
852         if (is_tasks) {
853                 do_tasks_view();        /** Render the task list */
854         }
855
856         if (is_calendar) {
857                 render_calendar_view(&calv);
858         }
859
860         if (is_addressbook) {
861                 do_addrbook_view(addrbook, num_ab);     /** Render the address book */
862         }
863
864         /** Note: wDumpContent() will output one additional </div> tag. */
865         wprintf("</div>\n");            /** end of 'content' div */
866         wDumpContent(1);
867
868         /** free the summary */
869         if (WCC->summ != NULL) {
870                 DeleteHash(&WCC->summ);
871         }
872         if (addrbook != NULL) free(addrbook);
873         FreeStrBuf(&BBViewToolBar);
874 }
875
876
877 /*
878  * Back end for post_message()
879  * ... this is where the actual message gets transmitted to the server.
880  */
881 void post_mime_to_server(void) {
882         wcsession *WCC = WC;
883         char top_boundary[SIZ];
884         char alt_boundary[SIZ];
885         int is_multipart = 0;
886         static int seq = 0;
887         wc_mime_attachment *att;
888         char *encoded;
889         size_t encoded_length;
890         size_t encoded_strlen;
891         char *txtmail = NULL;
892
893         sprintf(top_boundary, "Citadel--Multipart--%s--%04x--%04x",
894                 serv_info.serv_fqdn,
895                 getpid(),
896                 ++seq
897         );
898         sprintf(alt_boundary, "Citadel--Multipart--%s--%04x--%04x",
899                 serv_info.serv_fqdn,
900                 getpid(),
901                 ++seq
902         );
903
904         /* RFC2045 requires this, and some clients look for it... */
905         serv_puts("MIME-Version: 1.0");
906         serv_puts("X-Mailer: " PACKAGE_STRING);
907
908         /* If there are attachments, we have to do multipart/mixed */
909         if (GetCount(WCC->attachments) > 0) {
910                 is_multipart = 1;
911         }
912
913         if (is_multipart) {
914                 /* Remember, serv_printf() appends an extra newline */
915                 serv_printf("Content-type: multipart/mixed; boundary=\"%s\"\n", top_boundary);
916                 serv_printf("This is a multipart message in MIME format.\n");
917                 serv_printf("--%s", top_boundary);
918         }
919
920         /* Remember, serv_printf() appends an extra newline */
921         serv_printf("Content-type: multipart/alternative; "
922                 "boundary=\"%s\"\n", alt_boundary);
923         serv_printf("This is a multipart message in MIME format.\n");
924         serv_printf("--%s", alt_boundary);
925
926         serv_puts("Content-type: text/plain; charset=utf-8");
927         serv_puts("Content-Transfer-Encoding: quoted-printable");
928         serv_puts("");
929         txtmail = html_to_ascii(bstr("msgtext"), 0, 80, 0);
930         text_to_server_qp(txtmail);     /* Transmit message in quoted-printable encoding */
931         free(txtmail);
932
933         serv_printf("--%s", alt_boundary);
934
935         serv_puts("Content-type: text/html; charset=utf-8");
936         serv_puts("Content-Transfer-Encoding: quoted-printable");
937         serv_puts("");
938         serv_puts("<html><body>\r\n");
939         text_to_server_qp(bstr("msgtext"));     /* Transmit message in quoted-printable encoding */
940         serv_puts("</body></html>\r\n");
941
942         serv_printf("--%s--", alt_boundary);
943         
944         if (is_multipart) {
945                 long len;
946                 const char *Key; 
947                 void *vAtt;
948                 HashPos  *it;
949
950                 /* Add in the attachments */
951                 it = GetNewHashPos(WCC->attachments, 0);
952                 while (GetNextHashPos(WCC->attachments, it, &len, &Key, &vAtt)) {
953                         att = (wc_mime_attachment *)vAtt;
954                         encoded_length = ((att->length * 150) / 100);
955                         encoded = malloc(encoded_length);
956                         if (encoded == NULL) break;
957                         encoded_strlen = CtdlEncodeBase64(encoded, ChrPtr(att->Data), StrLength(att->Data), 1);
958
959                         serv_printf("--%s", top_boundary);
960                         serv_printf("Content-type: %s", ChrPtr(att->ContentType));
961                         serv_printf("Content-disposition: attachment; filename=\"%s\"", ChrPtr(att->FileName));
962                         serv_puts("Content-transfer-encoding: base64");
963                         serv_puts("");
964                         serv_write(encoded, encoded_strlen);
965                         serv_puts("");
966                         serv_puts("");
967                         free(encoded);
968                 }
969                 serv_printf("--%s--", top_boundary);
970                 DeleteHashPos(&it);
971         }
972
973         serv_puts("000");
974 }
975
976
977 /*
978  * Post message (or don't post message)
979  *
980  * Note regarding the "dont_post" variable:
981  * A random value (actually, it's just a timestamp) is inserted as a hidden
982  * field called "postseq" when the display_enter page is generated.  This
983  * value is checked when posting, using the static variable dont_post.  If a
984  * user attempts to post twice using the same dont_post value, the message is
985  * discarded.  This prevents the accidental double-saving of the same message
986  * if the user happens to click the browser "back" button.
987  */
988 void post_message(void)
989 {
990         char buf[1024];
991         StrBuf *encoded_subject = NULL;
992         static long dont_post = (-1L);
993         wc_mime_attachment  *att;
994         int is_anonymous = 0;
995         const StrBuf *display_name = NULL;
996         wcsession *WCC = WC;
997         
998         if (havebstr("force_room")) {
999                 gotoroom(bstr("force_room"));
1000         }
1001
1002         if (havebstr("display_name")) {
1003                 display_name = sbstr("display_name");
1004                 if (!strcmp(ChrPtr(display_name), "__ANONYMOUS__")) {
1005                         display_name = NULL;
1006                         is_anonymous = 1;
1007                 }
1008         }
1009
1010         if (WCC->upload_length > 0) {
1011                 const char *pch;
1012                 int n;
1013                 char N[64];
1014
1015                 lprintf(9, "%s:%d: we are uploading %d bytes\n", __FILE__, __LINE__, WCC->upload_length);
1016                 /** There's an attachment.  Save it to this struct... */
1017                 att = malloc(sizeof(wc_mime_attachment));
1018                 memset(att, 0, sizeof(wc_mime_attachment ));
1019                 att->length = WCC->upload_length;
1020                 att->ContentType = NewStrBufPlain(WCC->upload_content_type, -1);
1021                 att->FileName = NewStrBufPlain(WCC->upload_filename, -1);
1022                 
1023                 
1024                 if (WCC->attachments == NULL)
1025                         WCC->attachments = NewHash(1, NULL);
1026                 /* And add it to the list. */
1027                 n = snprintf(N, sizeof N, "%d", GetCount(WCC->attachments) + 1);
1028                 Put(WCC->attachments, N, n, att, DestroyMime);
1029
1030                 /**
1031                  * Mozilla sends a simple filename, which is what we want,
1032                  * but Satan's Browser sends an entire pathname.  Reduce
1033                  * the path to just a filename if we need to.
1034                  */
1035                 pch = strrchr(ChrPtr(att->FileName), '/');
1036                 if (pch != NULL) {
1037                         StrBufCutLeft(att->FileName, pch - ChrPtr(att->FileName));
1038                 }
1039                 pch = strrchr(ChrPtr(att->FileName), '\\');
1040                 if (pch != NULL) {
1041                         StrBufCutLeft(att->FileName, pch - ChrPtr(att->FileName));
1042                 }
1043
1044                 /**
1045                  * Transfer control of this memory from the upload struct
1046                  * to the attachment struct.
1047                  */
1048                 att->Data = NewStrBufPlain(WCC->upload, WCC->upload_length);
1049                 free(WCC->upload);
1050                 WCC->upload_length = 0;
1051                 WCC->upload = NULL;
1052                 display_enter();
1053                 return;
1054         }
1055
1056         if (havebstr("cancel_button")) {
1057                 sprintf(WCC->ImportantMessage, 
1058                         _("Cancelled.  Message was not posted."));
1059         } else if (havebstr("attach_button")) {
1060                 display_enter();
1061                 return;
1062         } else if (lbstr("postseq") == dont_post) {
1063                 sprintf(WCC->ImportantMessage, 
1064                         _("Automatically cancelled because you have already "
1065                         "saved this message."));
1066         } else {
1067                 const char CMD[] = "ENT0 1|%s|%d|4|%s|%s||%s|%s|%s|%s|%s";
1068                 const StrBuf *Recp = NULL; 
1069                 const StrBuf *Cc = NULL;
1070                 const StrBuf *Bcc = NULL;
1071                 const StrBuf *Wikipage = NULL;
1072                 const StrBuf *my_email_addr = NULL;
1073                 StrBuf *CmdBuf = NULL;;
1074                 StrBuf *references = NULL;
1075
1076                 if (havebstr("references"))
1077                 {
1078                         const StrBuf *ref = sbstr("references");
1079                         references = NewStrBufPlain(ChrPtr(ref), StrLength(ref));
1080                         lprintf(9, "Converting: %s\n", ChrPtr(references));
1081                         StrBufReplaceChars(references, '|', '!');
1082                         lprintf(9, "Converted: %s\n", ChrPtr(references));
1083                 }
1084                 if (havebstr("subject")) {
1085                         const StrBuf *Subj;
1086                         /*
1087                          * make enough room for the encoded string; 
1088                          * plus the QP header 
1089                          */
1090                         Subj = sbstr("subject");
1091                         
1092                         StrBufRFC2047encode(&encoded_subject, Subj);
1093                 }
1094                 Recp = sbstr("recp");
1095                 Cc = sbstr("cc");
1096                 Bcc = sbstr("bcc");
1097                 Wikipage = sbstr("wikipage");
1098                 my_email_addr = sbstr("my_email_addr");
1099                 
1100                 CmdBuf = NewStrBufPlain(NULL, 
1101                                         sizeof (CMD) + 
1102                                         StrLength(Recp) + 
1103                                         StrLength(encoded_subject) +
1104                                         StrLength(Cc) +
1105                                         StrLength(Bcc) + 
1106                                         StrLength(Wikipage) +
1107                                         StrLength(my_email_addr) + 
1108                                         StrLength(references));
1109
1110                 StrBufPrintf(CmdBuf, 
1111                              CMD,
1112                              ChrPtr(Recp),
1113                              is_anonymous,
1114                              ChrPtr(encoded_subject),
1115                              ChrPtr(display_name),
1116                              ChrPtr(Cc),
1117                              ChrPtr(Bcc),
1118                              ChrPtr(Wikipage),
1119                              ChrPtr(my_email_addr),
1120                              ChrPtr(references));
1121                 FreeStrBuf(&references);
1122
1123                 lprintf(9, "%s\n", ChrPtr(CmdBuf));
1124                 serv_puts(ChrPtr(CmdBuf));
1125                 serv_getln(buf, sizeof buf);
1126                 FreeStrBuf(&CmdBuf);
1127                 FreeStrBuf(&encoded_subject);
1128                 if (buf[0] == '4') {
1129                         post_mime_to_server();
1130                         if (  (havebstr("recp"))
1131                            || (havebstr("cc"  ))
1132                            || (havebstr("bcc" ))
1133                         ) {
1134                                 sprintf(WCC->ImportantMessage, _("Message has been sent.\n"));
1135                         }
1136                         else {
1137                                 sprintf(WC->ImportantMessage, _("Message has been posted.\n"));
1138                         }
1139                         dont_post = lbstr("postseq");
1140                 } else {
1141                         lprintf(9, "%s:%d: server post error: %s\n", __FILE__, __LINE__, buf);
1142                         sprintf(WC->ImportantMessage, "%s", &buf[4]);
1143                         display_enter();
1144                         return;
1145                 }
1146         }
1147
1148         DeleteHash(&WCC->attachments);
1149
1150         /**
1151          *  We may have been supplied with instructions regarding the location
1152          *  to which we must return after posting.  If found, go there.
1153          */
1154         if (havebstr("return_to")) {
1155                 http_redirect(bstr("return_to"));
1156         }
1157         /**
1158          *  If we were editing a page in a wiki room, go to that page now.
1159          */
1160         else if (havebstr("wikipage")) {
1161                 snprintf(buf, sizeof buf, "wiki?page=%s", bstr("wikipage"));
1162                 http_redirect(buf);
1163         }
1164         /**
1165          *  Otherwise, just go to the "read messages" loop.
1166          */
1167         else {
1168                 readloop(readnew);
1169         }
1170 }
1171
1172
1173
1174
1175 /**
1176  * \brief display the message entry screen
1177  */
1178 void display_enter(void)
1179 {
1180         char buf[SIZ];
1181         long now;
1182         const StrBuf *display_name = NULL;
1183         int recipient_required = 0;
1184         int subject_required = 0;
1185         int recipient_bad = 0;
1186         int is_anonymous = 0;
1187         wcsession *WCC = WC;
1188
1189         now = time(NULL);
1190
1191         if (havebstr("force_room")) {
1192                 gotoroom(bstr("force_room"));
1193         }
1194
1195         display_name = sbstr("display_name");
1196         if (!strcmp(ChrPtr(display_name), "__ANONYMOUS__")) {
1197                 display_name = NULL;
1198                 is_anonymous = 1;
1199         }
1200
1201         /** First test to see whether this is a room that requires recipients to be entered */
1202         serv_puts("ENT0 0");
1203         serv_getln(buf, sizeof buf);
1204
1205         if (!strncmp(buf, "570", 3)) {          /** 570 means that we need a recipient here */
1206                 recipient_required = 1;
1207         }
1208         else if (buf[0] != '2') {               /** Any other error means that we cannot continue */
1209                 sprintf(WCC->ImportantMessage, "%s", &buf[4]);
1210                 readloop(readnew);
1211                 return;
1212         }
1213
1214         /* Is the server strongly recommending that the user enter a message subject? */
1215         if ((buf[3] != '\0') && (buf[4] != '\0')) {
1216                 subject_required = extract_int(&buf[4], 1);
1217         }
1218
1219         /**
1220          * Are we perhaps in an address book view?  If so, then an "enter
1221          * message" command really means "add new entry."
1222          */
1223         if (WCC->wc_default_view == VIEW_ADDRESSBOOK) {
1224                 do_edit_vcard(-1, "", "", WCC->wc_roomname);
1225                 return;
1226         }
1227
1228         /*
1229          * Are we perhaps in a calendar room?  If so, then an "enter
1230          * message" command really means "add new calendar item."
1231          */
1232         if (WCC->wc_default_view == VIEW_CALENDAR) {
1233                 display_edit_event();
1234                 return;
1235         }
1236
1237         /*
1238          * Are we perhaps in a tasks view?  If so, then an "enter
1239          * message" command really means "add new task."
1240          */
1241         if (WCC->wc_default_view == VIEW_TASKS) {
1242                 display_edit_task();
1243                 return;
1244         }
1245
1246         /*
1247          * Otherwise proceed normally.
1248          * Do a custom room banner with no navbar...
1249          */
1250
1251         if (recipient_required) {
1252                 const StrBuf *Recp = NULL; 
1253                 const StrBuf *Cc = NULL;
1254                 const StrBuf *Bcc = NULL;
1255                 const StrBuf *Wikipage = NULL;
1256                 StrBuf *CmdBuf = NULL;;
1257                 const char CMD[] = "ENT0 0|%s|%d|0||%s||%s|%s|%s";
1258                 
1259                 Recp = sbstr("recp");
1260                 Cc = sbstr("cc");
1261                 Bcc = sbstr("bcc");
1262                 Wikipage = sbstr("wikipage");
1263                 
1264                 CmdBuf = NewStrBufPlain(NULL, 
1265                                         sizeof (CMD) + 
1266                                         StrLength(Recp) + 
1267                                         StrLength(display_name) +
1268                                         StrLength(Cc) +
1269                                         StrLength(Bcc) + 
1270                                         StrLength(Wikipage));
1271
1272                 StrBufPrintf(CmdBuf, 
1273                              CMD,
1274                              ChrPtr(Recp), 
1275                              is_anonymous,
1276                              ChrPtr(display_name),
1277                              ChrPtr(Cc), 
1278                              ChrPtr(Bcc), 
1279                              ChrPtr(Wikipage));
1280                 serv_puts(ChrPtr(CmdBuf));
1281                 serv_getln(buf, sizeof buf);
1282                 FreeStrBuf(&CmdBuf);
1283
1284                 if (!strncmp(buf, "570", 3)) {  /** 570 means we have an invalid recipient listed */
1285                         if (havebstr("recp") && 
1286                             havebstr("cc"  ) && 
1287                             havebstr("bcc" )) {
1288                                 recipient_bad = 1;
1289                         }
1290                 }
1291                 else if (buf[0] != '2') {       /** Any other error means that we cannot continue */
1292                         wprintf("<em>%s</em><br />\n", &buf[4]);/// -> important message
1293                         return;
1294                 }
1295         }
1296         svputlong("RCPTREQUIRED", recipient_required);
1297         svputlong("SUBJREQUIRED", recipient_required || subject_required);
1298
1299         begin_burst();
1300         output_headers(1, 0, 0, 0, 1, 0);
1301         DoTemplate(HKEY("edit_message"), NULL, NULL, CTX_NONE);
1302         end_burst();
1303
1304         return;
1305 }
1306
1307 /**
1308  * \brief delete a message
1309  */
1310 void delete_msg(void)
1311 {
1312         long msgid;
1313         char buf[SIZ];
1314
1315         msgid = lbstr("msgid");
1316
1317         if (WC->wc_is_trash) {  /** Delete from Trash is a real delete */
1318                 serv_printf("DELE %ld", msgid); 
1319         }
1320         else {                  /** Otherwise move it to Trash */
1321                 serv_printf("MOVE %ld|_TRASH_|0", msgid);
1322         }
1323
1324         serv_getln(buf, sizeof buf);
1325         sprintf(WC->ImportantMessage, "%s", &buf[4]);
1326
1327         readloop(readnew);
1328 }
1329
1330
1331 /**
1332  * \brief move a message to another folder
1333  */
1334 void move_msg(void)
1335 {
1336         long msgid;
1337         char buf[SIZ];
1338
1339         msgid = lbstr("msgid");
1340
1341         if (havebstr("move_button")) {
1342                 sprintf(buf, "MOVE %ld|%s", msgid, bstr("target_room"));
1343                 serv_puts(buf);
1344                 serv_getln(buf, sizeof buf);
1345                 sprintf(WC->ImportantMessage, "%s", &buf[4]);
1346         } else {
1347                 sprintf(WC->ImportantMessage, (_("The message was not moved.")));
1348         }
1349
1350         readloop(readnew);
1351 }
1352
1353
1354
1355
1356
1357 /*
1358  * Confirm move of a message
1359  */
1360 void confirm_move_msg(void)
1361 {
1362         long msgid;
1363         char buf[SIZ];
1364         char targ[SIZ];
1365
1366         msgid = lbstr("msgid");
1367
1368
1369         output_headers(1, 1, 2, 0, 0, 0);
1370         wprintf("<div id=\"banner\">\n");
1371         wprintf("<h1>");
1372         wprintf(_("Confirm move of message"));
1373         wprintf("</h1>");
1374         wprintf("</div>\n");
1375
1376         wprintf("<div id=\"content\" class=\"service\">\n");
1377
1378         wprintf("<CENTER>");
1379
1380         wprintf(_("Move this message to:"));
1381         wprintf("<br />\n");
1382
1383         wprintf("<form METHOD=\"POST\" action=\"move_msg\">\n");
1384         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
1385         wprintf("<INPUT TYPE=\"hidden\" NAME=\"msgid\" VALUE=\"%s\">\n", bstr("msgid"));
1386
1387         wprintf("<SELECT NAME=\"target_room\" SIZE=5>\n");
1388         serv_puts("LKRA");
1389         serv_getln(buf, sizeof buf);
1390         if (buf[0] == '1') {
1391                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
1392                         extract_token(targ, buf, 0, '|', sizeof targ);
1393                         wprintf("<OPTION>");
1394                         escputs(targ);
1395                         wprintf("\n");
1396                 }
1397         }
1398         wprintf("</SELECT>\n");
1399         wprintf("<br />\n");
1400
1401         wprintf("<INPUT TYPE=\"submit\" NAME=\"move_button\" VALUE=\"%s\">", _("Move"));
1402         wprintf("&nbsp;");
1403         wprintf("<INPUT TYPE=\"submit\" NAME=\"cancel_button\" VALUE=\"%s\">", _("Cancel"));
1404         wprintf("</form></CENTER>\n");
1405
1406         wprintf("</CENTER>\n");
1407         wDumpContent(1);
1408 }
1409
1410
1411 /*
1412  * Generic function to output an arbitrary MIME attachment from
1413  * message being composed
1414  *
1415  * partnum              The MIME part to be output
1416  * filename             Fake filename to give
1417  * force_download       Nonzero to force set the Content-Type: header to "application/octet-stream"
1418  */
1419 void postpart(StrBuf *partnum, StrBuf *filename, int force_download)
1420 {
1421         void *vPart;
1422         StrBuf *content_type;
1423         wc_mime_attachment *part;
1424         
1425         if (GetHash(WC->attachments, SKEY(partnum), &vPart) &&
1426             (vPart != NULL)) {
1427                 part = (wc_mime_attachment*) vPart;
1428                 if (force_download) {
1429                         content_type = NewStrBufPlain(HKEY("application/octet-stream"));
1430                 }
1431                 else {
1432                         content_type = NewStrBufDup(part->ContentType);
1433                 }
1434                 output_headers(0, 0, 0, 0, 0, 0);
1435                 StrBufAppendBuf(WC->WBuf, part->Data, 0);
1436                 http_transmit_thing(ChrPtr(content_type), 0);
1437         } else {
1438                 hprintf("HTTP/1.1 404 %s\n", ChrPtr(partnum));
1439                 output_headers(0, 0, 0, 0, 0, 0);
1440                 hprintf("Content-Type: text/plain\r\n");
1441                 wprintf(_("An error occurred while retrieving this part: %s/%s\n"), 
1442                         ChrPtr(partnum), ChrPtr(filename));
1443                 end_burst();
1444         }
1445         FreeStrBuf(&content_type);
1446 }
1447
1448
1449 /*
1450  * Generic function to output an arbitrary MIME part from an arbitrary
1451  * message number on the server.
1452  *
1453  * msgnum               Number of the item on the citadel server
1454  * partnum              The MIME part to be output
1455  * force_download       Nonzero to force set the Content-Type: header to "application/octet-stream"
1456  */
1457 void mimepart(const char *msgnum, const char *partnum, int force_download)
1458 {
1459         char buf[256];
1460         off_t bytes;
1461         char content_type[256];
1462         
1463         serv_printf("OPNA %s|%s", msgnum, partnum);
1464         serv_getln(buf, sizeof buf);
1465         if (buf[0] == '2') {
1466                 bytes = extract_long(&buf[4], 0);
1467                 if (force_download) {
1468                         strcpy(content_type, "application/octet-stream");
1469                 }
1470                 else {
1471                         extract_token(content_type, &buf[4], 3, '|', sizeof content_type);
1472                 }
1473                 output_headers(0, 0, 0, 0, 0, 0);
1474
1475                 read_server_binary(WC->WBuf, bytes);
1476                 serv_puts("CLOS");
1477                 serv_getln(buf, sizeof buf);
1478                 http_transmit_thing(content_type, 0);
1479         } else {
1480                 hprintf("HTTP/1.1 404 %s\n", &buf[4]);
1481                 output_headers(0, 0, 0, 0, 0, 0);
1482                 hprintf("Content-Type: text/plain\r\n");
1483                 wprintf(_("An error occurred while retrieving this part: %s\n"), &buf[4]);
1484                 end_burst();
1485         }
1486 }
1487
1488
1489 /*
1490  * Read any MIME part of a message, from the server, into memory.
1491  */
1492 char *load_mimepart(long msgnum, char *partnum)
1493 {
1494         char buf[SIZ];
1495         off_t bytes;
1496         char content_type[SIZ];
1497         char *content;
1498         
1499         serv_printf("DLAT %ld|%s", msgnum, partnum);
1500         serv_getln(buf, sizeof buf);
1501         if (buf[0] == '6') {
1502                 bytes = extract_long(&buf[4], 0);
1503                 extract_token(content_type, &buf[4], 3, '|', sizeof content_type);
1504
1505                 content = malloc(bytes + 2);
1506                 serv_read(content, bytes);
1507
1508                 content[bytes] = 0;     /* null terminate for good measure */
1509                 return(content);
1510         }
1511         else {
1512                 return(NULL);
1513         }
1514 }
1515
1516 /*
1517  * Read any MIME part of a message, from the server, into memory.
1518  */
1519 void MimeLoadData(wc_mime_attachment *Mime)
1520 {
1521         char buf[SIZ];
1522         off_t bytes;
1523 //// TODO: is there a chance the contenttype is different  to the one we know?  
1524         serv_printf("DLAT %ld|%s", Mime->msgnum, ChrPtr(Mime->PartNum));
1525         serv_getln(buf, sizeof buf);
1526         if (buf[0] == '6') {
1527                 bytes = extract_long(&buf[4], 0);
1528
1529                 if (Mime->Data == NULL)
1530                         Mime->Data = NewStrBufPlain(NULL, bytes);
1531                 StrBuf_ServGetBLOB(Mime->Data, bytes);
1532
1533         }
1534         else {
1535                 FlushStrBuf(Mime->Data);
1536                 /// TODO XImportant message
1537         }
1538 }
1539
1540
1541
1542
1543 void view_mimepart(void) {
1544         mimepart(ChrPtr(WC->UrlFragment2),
1545                  ChrPtr(WC->UrlFragment3),
1546                  0);
1547 }
1548
1549 void download_mimepart(void) {
1550         mimepart(ChrPtr(WC->UrlFragment2),
1551                  ChrPtr(WC->UrlFragment3),
1552                  1);
1553 }
1554
1555 void view_postpart(void) {
1556         postpart(WC->UrlFragment2,
1557                  WC->UrlFragment3,
1558                  0);
1559 }
1560
1561 void download_postpart(void) {
1562         postpart(WC->UrlFragment2,
1563                  WC->UrlFragment3,
1564                  1);
1565 }
1566
1567
1568
1569 void h_readnew(void) { readloop(readnew);}
1570 void h_readold(void) { readloop(readold);}
1571 void h_readfwd(void) { readloop(readfwd);}
1572 void h_headers(void) { readloop(headers);}
1573 void h_do_search(void) { readloop(do_search);}
1574
1575
1576
1577
1578
1579
1580 void 
1581 InitModule_MSG
1582 (void)
1583 {
1584         WebcitAddUrlHandler(HKEY("readnew"), h_readnew, NEED_URL);
1585         WebcitAddUrlHandler(HKEY("readold"), h_readold, NEED_URL);
1586         WebcitAddUrlHandler(HKEY("readfwd"), h_readfwd, NEED_URL);
1587         WebcitAddUrlHandler(HKEY("headers"), h_headers, NEED_URL);
1588         WebcitAddUrlHandler(HKEY("do_search"), h_do_search, 0);
1589         WebcitAddUrlHandler(HKEY("display_enter"), display_enter, 0);
1590         WebcitAddUrlHandler(HKEY("post"), post_message, 0);
1591         WebcitAddUrlHandler(HKEY("move_msg"), move_msg, 0);
1592         WebcitAddUrlHandler(HKEY("delete_msg"), delete_msg, 0);
1593         WebcitAddUrlHandler(HKEY("confirm_move_msg"), confirm_move_msg, 0);
1594         WebcitAddUrlHandler(HKEY("msg"), embed_message, NEED_URL|AJAX);
1595         WebcitAddUrlHandler(HKEY("printmsg"), print_message, NEED_URL);
1596         WebcitAddUrlHandler(HKEY("mobilemsg"), mobile_message_view, NEED_URL);
1597         WebcitAddUrlHandler(HKEY("msgheaders"), display_headers, NEED_URL);
1598
1599         WebcitAddUrlHandler(HKEY("mimepart"), view_mimepart, NEED_URL);
1600         WebcitAddUrlHandler(HKEY("mimepart_download"), download_mimepart, NEED_URL);
1601         WebcitAddUrlHandler(HKEY("postpart"), view_postpart, NEED_URL);
1602         WebcitAddUrlHandler(HKEY("postpart_download"), download_postpart, NEED_URL);
1603
1604         return ;
1605 }